Build: #19 failed

Job: Test Tasks MPI Many Linux 2.28 Rocky 8.10 Py3.10 failed

server fake timeout busy wait: Test case result

The below summarizes the result of the test " server fake timeout busy wait" in build 19 of CASA - CMake MPI - Test Tasks MPI Many Linux 2.28 Rocky 8.10 Py3.10.
Description
server fake timeout busy wait
Test class
src.casampi.tests.test_casampi.test_MPICommandServer
Method
test_server_fake_timeout_busy_wait
Duration
< 1 sec
Status
Failed (Existing Failure)

Error Log

AttributeError: module 'sys' has no attribute 'set_int_max_str_digits'
self = <casampi.tests.test_casampi.test_MPICommandServer testMethod=test_server_fake_timeout_busy_wait>

        def test_server_fake_timeout_busy_wait(self):
    
            mon = MPIMonitorClient()
            ini_online = len(list(mon.get_server_rank_online()))
            self.assertTrue(ini_online > 0,
                            "Expected to start this test with some servers online")
    
            # Simulate a client timeout with a greedy operation
            nloops = int(len(self.server_list) / 2)
    
    	# Python 3.10.7 added Integer string conversion length limitation
            # https://docs.python.org/3/library/stdtypes.html#integer-string-conversion-length-limitation
            if (sys.version_info.major >= 3 and sys.version_info.minor >= 10):
>               sys.set_int_max_str_digits(0)
E               AttributeError: module 'sys' has no attribute 'set_int_max_str_digits'

../../../../casampi/src/casampi/tests/test_casampi.py:1169: AttributeError