From 52b0f30216f77e8c6fbbbd229c71dfd33f72e5d6 Mon Sep 17 00:00:00 2001 From: architeuthidae Date: Mon, 22 Jul 2024 15:57:19 +0800 Subject: [PATCH] artiq_dashboard: Replace --port-notify --- artiq/frontend/artiq_dashboard.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/artiq/frontend/artiq_dashboard.py b/artiq/frontend/artiq_dashboard.py index dc842e154..a0606c391 100755 --- a/artiq/frontend/artiq_dashboard.py +++ b/artiq/frontend/artiq_dashboard.py @@ -33,6 +33,9 @@ def get_argparser(): parser.add_argument( "-s", "--server", default="::1", help="hostname or IP of the master to connect to (default: %(default)s)") + parser.add_argument( + "--port-notify", default=3250, type=int, + help="TCP port to connect to for notifications (default: %(default)s)") parser.add_argument( "--port-control", default=3251, type=int, help="TCP port to connect to for control (default: %(default)s)")