[ARVADOS] updated: 2.1.0-931-g935ee0561
Git user
git at public.arvados.org
Fri Jul 9 14:30:39 UTC 2021
Summary of changes:
services/keep-web/s3_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 935ee05613ccdc6e365c27ee3bc8a1df68ce2d71 (commit)
from d6bbaafe93600ac48fec642748ea2d303bcd1bd3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 935ee05613ccdc6e365c27ee3bc8a1df68ce2d71
Author: Tom Clegg <tom at curii.com>
Date: Thu Jun 17 22:59:00 2021 -0400
Merge branch '17810-s3-escape-non-unreserved-chars'
fixes #17810
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at curii.com>
diff --git a/services/keep-web/s3_test.go b/services/keep-web/s3_test.go
index d336c5f09..f411fde87 100644
--- a/services/keep-web/s3_test.go
+++ b/services/keep-web/s3_test.go
@@ -563,7 +563,7 @@ func (s *IntegrationSuite) TestS3NormalizeURIForSignature(c *check.C) {
{"/foo%2fbar", "/foo/bar"}, // / must not be escaped
{"/(foo)/[];,", "/%28foo%29/%5B%5D%3B%2C"}, // ()[];, must be escaped
{"/foo%5bbar", "/foo%5Bbar"}, // %XX must be uppercase
- {"//foo///bar", "/foo/bar"}, // "//" and "///" must be squashed to "/"
+ {"//foo///.bar", "/foo/.bar"}, // "//" and "///" must be squashed to "/"
} {
c.Logf("trial %q", trial)
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list