Skip to content

Commit 531e3d3

Browse files
Extend worker logging ports list (#289)
Added new worker logging ports (5595 to 5599) to both `tests/test_config.py` and `config/nowcast.yaml`. This is to prevent intermittent worker failures due to all logging ports in use during collecting of obs in the early morning. Additionally, fixed a comment in `nowcast.yaml` to include double quotes around a colon character in the zmq section.
1 parent cc30816 commit 531e3d3

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

config/nowcast.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1203,9 +1203,9 @@ zmq:
12031203
workers: [
12041204
5562, 5563, 5564, 5565, 5566, 5567, 5568, 5569,
12051205
5570, 5571, 5572, 5573, 5574, 5575, 5576, 5577, 5578, 5579,
1206-
5590, 5591, 5592, 5593, 5594
1206+
5590, 5591, 5592, 5593, 5594, 5595, 5596, 5597, 5598, 5599,
12071207
]
1208-
# **host:port pairs in lists must be quoted to protect : characters**
1208+
# **host:port pairs in lists must be quoted to protect ":" characters**
12091209
run_NEMO: ['salish.eos.ubc.ca:5556', '206.12.100.213:5556']
12101210
watch_NEMO: ['salish.eos.ubc.ca:5557', '206.12.100.213:5557']
12111211
make_ww3_wind_file: '206.12.100.213:5570'

tests/test_config.py

+5
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,11 @@ def test_log_aggregator_ports(self, prod_config):
257257
5592,
258258
5593,
259259
5594,
260+
5595,
261+
5596,
262+
5597,
263+
5598,
264+
5599,
260265
],
261266
"run_NEMO": ["salish.eos.ubc.ca:5556", "206.12.100.213:5556"],
262267
"watch_NEMO": ["salish.eos.ubc.ca:5557", "206.12.100.213:5557"],

0 commit comments

Comments
 (0)