Skip to content

Commit

Permalink
Fix authentication in HTTP connection (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
TudorAndrei authored Sep 27, 2022
1 parent c887d37 commit 6b1306f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion surrealdb/clients/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def __init__(
base_url=self._url,
auth=httpx.BasicAuth(
username=self._username,
password=self._username,
password=self._password,
),
headers={
"NS": self._namespace,
Expand Down

0 comments on commit 6b1306f

Please sign in to comment.