Skip to content

Commit 235356a

Browse files
authored
Merge pull request #170 from input-output-hk/match_valid_counter
Match valid certificate counter message
2 parents ecfe8cb + fe69ed5 commit 235356a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cardano_clusterlib/clusterlib_helpers.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,10 @@ def _get_kes_period_info(kes_info: str) -> Dict[str, Any]:
122122
messages_list.append(" ".join(message_entry))
123123

124124
for out_message in messages_list:
125-
if "counter agrees with" in out_message:
125+
if (
126+
"counter agrees with" in out_message
127+
or "counter ahead of the node protocol state counter by 1" in out_message
128+
):
126129
valid_counters = True
127130
elif "correct KES period interval" in out_message:
128131
valid_kes_period = True

0 commit comments

Comments
 (0)