We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35ef335 commit 2beb0eeCopy full SHA for 2beb0ee
services/autoscaling/src/simcore_service_autoscaling/modules/dask.py
@@ -104,8 +104,8 @@ def _find_by_worker_host(
104
_, details = dask_worker
105
if match := re.match(DASK_NAME_PATTERN, details["name"]):
106
return bool(match.group("private_ip") == node_hostname)
107
- _logger.warning(
108
- "Unexpected worker name format: %s. TIP: this should be investigated",
+ _logger.error(
+ "Unexpected worker name format: %s. TIP: this should be investigated as this is unexpected",
109
details["name"],
110
)
111
return False
0 commit comments