File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -330,11 +330,11 @@ def pytest_collection_finish(session):
330
330
region = [unmarshal_az_override (az ) for az in region ]
331
331
# Use the first element of the list of regions, since there must be at least one
332
332
reporting_region = get_reporting_region (region [0 ])
333
- logging .info (f"Metadata reporting region { reporting_region } " )
333
+ logging .debug (f"Metadata reporting region { reporting_region } " )
334
334
# Setup the metadata table in case it doesn't exist
335
335
MetadataTableManager (reporting_region , METADATA_TABLE ).create_metadata_table ()
336
336
except Exception as exc :
337
- logging .info (f"There was a '{ type (exc )} ' error with '{ exc } ' when creating the table!" )
337
+ logging .error (f"There was a '{ type (exc )} ' error with '{ exc } ' when creating the table!" )
338
338
339
339
340
340
def _log_collected_tests (session ):
Original file line number Diff line number Diff line change @@ -799,9 +799,11 @@ def test_scontrol_reboot(
799
799
slots = 2 ,
800
800
constraint = "dynamic" ,
801
801
)
802
- # TOFIX We observe in 3.13.0 an increase in the bootstrap time for Rocky and RHEL.
802
+ # TOFIX We observe in 3.13.0 an increase in the bootstrap time for AL2023, Rocky and RHEL.
803
803
# We must address it and restore the default wait time to 400s.
804
- stop_max_delay_secs = 500 if (os .startswith ("rocky" ) or os .startswith ("rhel" )) else 400
804
+ stop_max_delay_secs = 500 if (os == "alinux2023"
805
+ or os .startswith ("rocky" )
806
+ or os .startswith ("rhel" )) else 400
805
807
wait_for_compute_nodes_states (
806
808
slurm_commands ,
807
809
["queue1-dy-cr1-1" , "queue1-dy-cr1-2" ],
You can’t perform that action at this time.
0 commit comments