You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by an...@apache.org on 2016/11/28 10:57:43 UTC

[2/2] ignite git commit: IGNITE-4243 Fixed link in Redis examples.

IGNITE-4243 Fixed link in Redis examples.

(cherry picked from commit 7af7a99)


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/a53fd38c
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/a53fd38c
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/a53fd38c

Branch: refs/heads/ignite-1.8
Commit: a53fd38c0bdb65c454affa947b2edb7b694973c4
Parents: 1073b2c
Author: Andrey Novikov <an...@gridgain.com>
Authored: Mon Nov 28 17:03:52 2016 +0700
Committer: Andrey Novikov <an...@gridgain.com>
Committed: Mon Nov 28 17:56:50 2016 +0700

----------------------------------------------------------------------
 examples/redis/redis-example.php | 2 +-
 examples/redis/redis-example.py  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/a53fd38c/examples/redis/redis-example.php
----------------------------------------------------------------------
diff --git a/examples/redis/redis-example.php b/examples/redis/redis-example.php
index 0054f16..f015b5c 100644
--- a/examples/redis/redis-example.php
+++ b/examples/redis/redis-example.php
@@ -22,7 +22,7 @@
  * To execute this script, you need to have Predis extension installed and Ignite running.
  * See https://github.com/nrk/predis for Predis details.
  *
- * See https://apacheignite.readme.io/ for more details on Redis integration.
+ * See https://apacheignite.readme.io/docs/redis for more details on Redis integration.
  */
 
 // Load the library.

http://git-wip-us.apache.org/repos/asf/ignite/blob/a53fd38c/examples/redis/redis-example.py
----------------------------------------------------------------------
diff --git a/examples/redis/redis-example.py b/examples/redis/redis-example.py
index 15b847b..f6c4f36 100644
--- a/examples/redis/redis-example.py
+++ b/examples/redis/redis-example.py
@@ -20,7 +20,7 @@ import redis
 To execute this, you will have redis-py installed and Ignite running.
 See https://github.com/andymccurdy/redis-py for the details on redis-py.
 
-See https://apacheignite.readme.io/ for more details on Redis integration.
+See https://apacheignite.readme.io/docs/redis for more details on Redis integration.
 '''
 
 r = redis.StrictRedis(host='localhost', port=11211, db=0)