@@ -225,18 +225,18 @@ def __call__(self, message: str) -> bool:
225225 ] = new_progress
226226
227227 self .logger .info (
228- "Current startup progress [expected number of states =%d]: %s" ,
228+ "Current startup progress [expected number of node-progress-types =%d]: %s" ,
229229 NodeProgressType .required_types_for_started_service (),
230230 f"{ json .dumps ({k :round (v ,1 ) for k ,v in self ._current_progress .items ()})} " ,
231231 )
232232
233- return self .received_required_node_progress_types () and all (
233+ return self .got_expected_node_progress_types () and all (
234234 round (progress , 1 ) == 1.0
235235 for progress in self ._current_progress .values ()
236236 )
237237 return False
238238
239- def received_required_node_progress_types (self ):
239+ def got_expected_node_progress_types (self ):
240240 return all (
241241 progress_type in self ._current_progress
242242 for progress_type in NodeProgressType .required_types_for_started_service ()
@@ -346,7 +346,7 @@ def expected_service_running(
346346 yield service_running
347347
348348 except PlaywrightTimeoutError :
349- if waiter .received_required_node_progress_types ():
349+ if waiter .got_expected_node_progress_types ():
350350 ctx .logger .warning (
351351 "⚠️ Progress bar didn't receive 100 percent but all states are there: %s ⚠️" , # https://github.com/ITISFoundation/osparc-simcore/issues/6449
352352 waiter .get_current_progress (),
0 commit comments