Skip to content

Commit

Permalink
fixing get_session request, fixes #669 (#685)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankJonasmoelle authored Aug 29, 2024
1 parent 4f501f0 commit dbc91df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedn/network/api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ def get_session(self, id: str):
:return: Session.
:rtype: dict
"""
response = requests.get(self._get_url_api_v1(f"sessions/{id}"), self.verify, headers=self.headers)
response = requests.get(self._get_url_api_v1(f"sessions/{id}"), verify=self.verify, headers=self.headers)

_json = response.json()

Expand Down

0 comments on commit dbc91df

Please sign in to comment.