diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-03-17 11:10:05 -0400 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2020-03-17 11:10:05 -0400 |
commit | a75ba0843d63f6e23c85635b44ea1f1ee6dfd173 (patch) | |
tree | 38efa7f17ac3c58665f9f09cf4813f3864bdc824 | |
parent | 230b0116f4d026d321d73a89edfb11134f356a18 (diff) | |
download | b4-a75ba0843d63f6e23c85635b44ea1f1ee6dfd173.tar.gz |
Use the URL that doesn't force a 301
Querying signatures without the trailing slash results in an extra 301
hop that is unnecessary.
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r-- | b4/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/b4/__init__.py b/b4/__init__.py index c82fa35..b8d4892 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -77,7 +77,7 @@ DEFAULT_CONFIG = { 'attestation-uid-match': 'loose', # NB! This whole behaviour will change once public-inbox # gains support for cross-list searches - 'attestation-query-url': LOREADDR + '/signatures', + 'attestation-query-url': LOREADDR + '/signatures/', # We'll use the default gnupg homedir, unless you set it here 'attestation-gnupghome': None, # Do you like simple or fancy checkmarks? |