From 08f878f6c254c4ab657484441331e20cc0e36653 Mon Sep 17 00:00:00 2001 From: Vikram Rangnekar Date: Tue, 30 Jul 2019 01:40:13 -0400 Subject: [PATCH] Fix wrong value for use_allow_list in dev config --- config/dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/dev.yml b/config/dev.yml index 064895e..aae2586 100644 --- a/config/dev.yml +++ b/config/dev.yml @@ -9,7 +9,7 @@ log_level: "debug" # queries used. When enabled super graph # will only allow queries from this list # List saved to ./config/allow.list -use_allow_list: true +use_allow_list: false # Throw a 401 on auth failure for queries that need auth # valid values: always, per_query, never