Skip to content

Commit f808941

Browse files
authored
Merge pull request #1120 from sirosen/fix-sgw-allowed-domains
Bugfix: allow_domains vs allowed_domains
2 parents e5be5c1 + 1d6b937 commit f808941

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Fixed
2+
~~~~~
3+
4+
- Fix a bug in ``StorageGatewayDocument`` which stored any ``allowed_domains``
5+
argument under an ``"allow_domains"`` key instead of the correct key,
6+
``"allowed_domains"``. (:pr:`NUMBER`)

src/globus_sdk/services/gcs/data/storage_gateway.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(
7878
root=root,
7979
)
8080
self._set_optstrlists(
81-
allow_domains=allowed_domains,
81+
allowed_domains=allowed_domains,
8282
users_allow=users_allow,
8383
users_deny=users_deny,
8484
)

0 commit comments

Comments
 (0)