Skip to content

Commit

Permalink
Session creation post was using the wrong endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-riggs committed Oct 22, 2024
1 parent b386ee7 commit 72d90fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/murfey/client/tui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ async def on_mount(self) -> None:
else:
session_name = "Client connection"
resp = capture_post(
f"{self._environment.url.geturl()}/sessions/{self._environment.murfey_session}/session",
f"{self._environment.url.geturl()}/instruments/{self._environment.instrument_name}/clients/{self._environment.client_id}/session",
json={"session_id": None, "session_name": session_name},
)
if resp:
Expand Down

0 comments on commit 72d90fa

Please sign in to comment.