-
-
Notifications
You must be signed in to change notification settings - Fork 248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix mutable reference headers #1095 #1096
base: main
Are you sure you want to change the base?
Fix mutable reference headers #1095 #1096
Conversation
@olirice Sorry, I can not set reviewer. That's why , I request a review here. |
Pull Request Test Coverage Report for Build 14248085953Details
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the fix @AsahiSoftWareEngineer just some clarifications before merging.
supabase/_sync/client.py
Outdated
header = copy.deepcopy(self._create_auth_header(access_token)) | ||
self.options.headers["Authorization"] = header | ||
self.auth._headers["Authorization"] = header | ||
self.postgrest.session.headers["Authorization"] = header | ||
self.storage.session.headers["Authorization"] = header | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure the issue this is solving, could you elaborate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, Below source code is not necessary.
self.postgrest.session.headers["Authorization"] = header
self.storage.session.headers["Authorization"] = header
Caused by using deep-copy, before source code was not working. (auth._headers is not refreshed).
That's why, I changed to reassign deep-copied self._create_auth_header(access_token)
methods
@grdsdev Sorry, I fixed it. Please re-review pull request. |
@@ -69,7 +70,7 @@ def __init__( | |||
|
|||
self.supabase_url = supabase_url | |||
self.supabase_key = supabase_key | |||
self.options = options | |||
self.options = copy.deepcopy(options) | |||
options.headers.update(self._get_auth_headers()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just noticed this line updates the passed param, not the instance options variable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rewrite options.headers.update(self._get_auth_headers())
to self.options.headers.update(self._get_auth_headers())
.
I think this would be better addressed by using the I wrote your test below using the def test_mutable_headers_issue():
url = os.environ.get("SUPABASE_TEST_URL")
key = os.environ.get("SUPABASE_TEST_KEY")
shared_options = ClientOptions(
headers={"Authorization": "Bearer initial-token", "x-site": "supanew.site"}
)
client1 = create_client(url, key, shared_options)
client2 = create_client(url, key, shared_options)
client1.options.replace({"headers": {"Authorization": "Bearer modified-token"}})
assert client2.options.headers["Authorization"] == "Bearer initial-token"
assert client2.options.headers["x-site"] == "supanew.site"
assert client1.options.headers["x-site"] == "supanew.site" |
@silentworks Sure. I think of trying, but I do not know Can I rewrite docs.(Have I permissions??) |
What kind of change does this PR introduce?
Bug fix Isses #1095
What is the current behavior?
Isses No. #1095
What is the new behavior?
Prevent unintended header changes when sharing the same
ClientOptions
.