From d259dc487e228e8166b5882daf5995e993c82aa8 Mon Sep 17 00:00:00 2001 From: Furkan Date: Sat, 30 Nov 2024 20:23:47 +0300 Subject: [PATCH] feat: update example configs --- configs/examples/remote.toml | 5 +++-- configs/examples/remote_proxy.toml | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 configs/examples/remote_proxy.toml diff --git a/configs/examples/remote.toml b/configs/examples/remote.toml index 4654b11..a2ac0da 100644 --- a/configs/examples/remote.toml +++ b/configs/examples/remote.toml @@ -1,5 +1,6 @@ daq_job_type = "DAQJobRemote" -zmq_local_url = "tcp://localhost:10191" -zmq_remote_urls = ["tcp://1.2.3.4:10191"] + +zmq_proxy_pub_url = "tcp://1.2.3.4:10001" +zmq_proxy_sub_urls = ["tcp://1.2.3.4:10002"] # topics = ["topic_1", "topic_2"] diff --git a/configs/examples/remote_proxy.toml b/configs/examples/remote_proxy.toml new file mode 100644 index 0000000..6625dda --- /dev/null +++ b/configs/examples/remote_proxy.toml @@ -0,0 +1,4 @@ +daq_job_type = "DAQJobRemoteProxy" + +zmq_xsub_url = "tcp://0.0.0.0:10001" +zmq_xpub_url = "tcp://0.0.0.0:10002"