From 78eb1945e3974be698174d4d5fe54a623fab8135 Mon Sep 17 00:00:00 2001 From: Denis Kirillov Date: Thu, 17 Jun 2021 15:38:07 +0300 Subject: [PATCH] [#75] Fixed authContainer basic acl Allowed GET operation to OTHERS (it's need to successfully fetch accessbox). Signed-off-by: Denis Kirillov --- authmate/authmate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authmate/authmate.go b/authmate/authmate.go index 5ede806..58e0637 100644 --- a/authmate/authmate.go +++ b/authmate/authmate.go @@ -30,7 +30,7 @@ import ( ) const ( - defaultAuthContainerBasicACL uint32 = 0b00111100100011001000110011001100 + defaultAuthContainerBasicACL uint32 = 0b00111100100011001000110011001110 containerCreationTimeout = 120 * time.Second containerPollInterval = 5 * time.Second )