浏览代码

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;
 ?>