From 2a315dbee9391a1b315cb42f1d8b48e80c8a5ef9 Mon Sep 17 00:00:00 2001 From: Bagatur <22008038+baskaryan@users.noreply.github.com> Date: Mon, 17 Jul 2023 09:39:11 -0700 Subject: [PATCH] fix nb (#7843) --- .../vectorstores/integrations/redis.ipynb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/extras/modules/data_connection/vectorstores/integrations/redis.ipynb b/docs/extras/modules/data_connection/vectorstores/integrations/redis.ipynb index 83c17f60d..d8b352fea 100644 --- a/docs/extras/modules/data_connection/vectorstores/integrations/redis.ipynb +++ b/docs/extras/modules/data_connection/vectorstores/integrations/redis.ipynb @@ -285,24 +285,24 @@ "outputs": [], "source": [ "# connection to redis standalone at localhost, db 0, no password\n", - "redis_url=\"redis://localhost:6379\"\n", + "redis_url = \"redis://localhost:6379\"\n", "# connection to host \"redis\" port 7379 with db 2 and password \"secret\" (old style authentication scheme without username / pre 6.x)\n", - "redis_url=\"redis://:secret@redis:7379/2\"\n", + "redis_url = \"redis://:secret@redis:7379/2\"\n", "# connection to host redis on default port with user \"joe\", pass \"secret\" using redis version 6+ ACLs\n", - "redis_url=\"redis://joe:secret@redis/0\"\n", + "redis_url = \"redis://joe:secret@redis/0\"\n", "\n", "# connection to sentinel at localhost with default group mymaster and db 0, no password\n", - "redis_url=\"redis+sentinel://localhost:26379\"\n", + "redis_url = \"redis+sentinel://localhost:26379\"\n", "# connection to sentinel at host redis with default port 26379 and user \"joe\" with password \"secret\" with default group mymaster and db 0\n", - "redis_url=\"redis+sentinel://joe:secret@redis\"\n", + "redis_url = \"redis+sentinel://joe:secret@redis\"\n", "# connection to sentinel, no auth with sentinel monitoring group \"zone-1\" and database 2\n", - "redis_url=\"redis+sentinel://redis:26379/zone-1/2\"\n", + "redis_url = \"redis+sentinel://redis:26379/zone-1/2\"\n", "\n", "# connection to redis standalone at localhost, db 0, no password but with TLS support\n", - "redis_url=\"rediss://localhost:6379\"\n", + "redis_url = \"rediss://localhost:6379\"\n", "# connection to redis sentinel at localhost and default port, db 0, no password\n", "# but with TLS support for booth Sentinel and Redis server\n", - "redis_url=\"rediss+sentinel://localhost\"\n" + "redis_url = \"rediss+sentinel://localhost\"" ] } ],