소스 검색

Fixed a value in the shared configurations for the library examples

Daniele Alessandri 15 년 전
부모
커밋
dc50258c28
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/SharedConfigurations.php

+ 1 - 1
examples/SharedConfigurations.php

@@ -1,7 +1,7 @@
 <?php
 require_once '../lib/Predis.php';
 
-const REDIS_HOST = '192.168.1.205';
+const REDIS_HOST = '127.0.0.1';
 const REDIS_PORT = 6379;
 const REDIS_DB   = 15;
 ?>