From b988472739786642722bc19e86cae6c5d2290d12 Mon Sep 17 00:00:00 2001 From: Matt Schwager <schwag09@gmail.com> Date: Wed, 4 Oct 2017 10:53:13 -0400 Subject: [PATCH] Correct Redis store port argument string --- lib/SimpleSAML/Store/Redis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SimpleSAML/Store/Redis.php b/lib/SimpleSAML/Store/Redis.php index f7fc0fa84..25162e224 100644 --- a/lib/SimpleSAML/Store/Redis.php +++ b/lib/SimpleSAML/Store/Redis.php @@ -34,7 +34,7 @@ class Redis extends Store array( 'scheme' => 'tcp', 'host' => $host, - 'post' => $port, + 'port' => $port, ), array( 'prefix' => $prefix, -- GitLab