Skip to content

Commit f001b9c

Browse files
committed
Forgot to update router path
1 parent 69efbf0 commit f001b9c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/murfey/instrument_server/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ def start_instrument_server():
5858
# Construct URL for the HTTPS log handler
5959
client_config = dict(read_config()["Murfey"])
6060
murfey_server_url = client_config["server"].rstrip("/")
61-
logger_url = f"{murfey_server_url}{url_path_for('api.hub.router', 'forward_logs')}"
61+
logger_url = (
62+
f"{murfey_server_url}{url_path_for('api.logging.router', 'forward_logs')}"
63+
)
6264

6365
# Forward DEBUG levels logs and above from Murfey to the backend
6466
murfey_https_handler = HTTPSHandler(endpoint_url=logger_url)

0 commit comments

Comments
 (0)