Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 10BEE200BE7 for ; Mon, 5 Dec 2016 13:38:11 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0F8B3160AF9; Mon, 5 Dec 2016 12:38:11 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C106F160B48 for ; Mon, 5 Dec 2016 13:38:08 +0100 (CET) Received: (qmail 14003 invoked by uid 500); 5 Dec 2016 12:38:08 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 12602 invoked by uid 99); 5 Dec 2016 12:38:06 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2016 12:38:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 74EFCF0DC7; Mon, 5 Dec 2016 12:38:06 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: vozerov@apache.org To: commits@ignite.apache.org Date: Mon, 05 Dec 2016 12:38:45 -0000 Message-Id: In-Reply-To: <2c1cfa866e2c4f96838bc3183b3040f8@git.apache.org> References: <2c1cfa866e2c4f96838bc3183b3040f8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [41/52] ignite git commit: IGNITE-4243 Fixed link in Redis examples. archived-at: Mon, 05 Dec 2016 12:38:11 -0000 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/master Commit: a53fd38c0bdb65c454affa947b2edb7b694973c4 Parents: 1073b2c Author: Andrey Novikov Authored: Mon Nov 28 17:03:52 2016 +0700 Committer: Andrey Novikov 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)