You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Include timestamp in test cluster warn/error output
Previously the code to capture and dedup error and warn messages from
test nodes would remove the timestamp from the message. This made
debugging timing issues difficult. For example, the message would look
like:
```
» WARN ][o.o.d.FileBasedSeedHostsProvider] [v2.19.5-0] expected, but did not find, a dynamic hosts list at [/home/ubuntu/workplace/opensearch-project/OpenSearch/qa/rolling-upgrade/build/testclusters/v2.19.5-0/config/unicast_hosts.txt]
» ↑ repeated 2 times ↑
```
With this change it looks like:
```
» [2026-02-18T20:04:29,167][WARN ][o.o.d.FileBasedSeedHostsProvider] [v2.19.5-0] expected, but did not find, a dynamic hosts list at [/home/ubuntu/workplace/opensearch-project/OpenSearch/qa/rolling-upgrade/build/testclusters/v2.19.5-0/config/unicast_hosts.txt]
» ↑ repeated 2 times ↑
```
Signed-off-by: Andrew Ross <andrross@amazon.com>
0 commit comments