Acceptance tests using different clients concurrently. Environment deployed from packages.

Build: #2523 failed

Job: File content failed

user writes to file using client2 and using client1 sees that files content has changed[1oz 1op 1oc-oneclient1-RESt-oneclient1]: Test case result

The below summarizes the result of the test " user writes to file using client2 and using client1 sees that files content has changed[1oz 1op 1oc-oneclient1-RESt-oneclient1]" in build 2,523 of Onedata Products - mixed acceptance pkg - Chrome file content tests.
Description
user writes to file using client2 and using client1 sees that files content has changed[1oz 1op 1oc-oneclient1-RESt-oneclient1]
Test class
mixed.scenarios.test_file_content
Method
test_user_writes_to_file_using_client2_and_using_client1_sees_that_files_content_has_changed[1oz_1op_1oc-oneclient1-REST-oneclient1]
Duration
32 secs
Status
Failed (New Failure)

Error Log

ConnectionRefusedError: [Errno 111] Connection refused
request = <FixtureRequest for <Function 'test_user_writes_to_file_using_client2_and_using_client1_sees_that_files_content_has_changed[1oz_1op_1oc-oneclient1-REST-oneclient1]'>>

    @pytest.mark.usefixtures(*function_args)
    def scenario_wrapper(request):
>       _execute_scenario(feature, scenario, request, encoding)

/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:227: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:189: in _execute_scenario
    _execute_step_function(request, scenario, step, step_func)
/usr/local/lib/python3.8/dist-packages/pytest_bdd/scenario.py:130: in _execute_step_function
    step_func(**kwargs)
/usr/local/lib/python3.8/dist-packages/pytest_bdd/steps.py:162: in step_func
    result = request.getfixturevalue(func.__name__)
/usr/local/lib/python3.8/dist-packages/_pytest/fixtures.py:428: in getfixturevalue
    return self._get_active_fixturedef(argname).cached_result[0]
/usr/local/lib/python3.8/dist-packages/_pytest/fixtures.py:453: in _get_active_fixturedef
    self._compute_fixture_value(fixturedef)
/usr/local/lib/python3.8/dist-packages/_pytest/fixtures.py:524: in _compute_fixture_value
    fixturedef.execute(request=subrequest)
/usr/local/lib/python3.8/dist-packages/_pytest/fixtures.py:795: in execute
    return hook.pytest_fixture_setup(fixturedef=self, request=request)
/usr/local/lib/python3.8/dist-packages/pluggy/__init__.py:617: in __call__
    return self._hookexec(self, self._nonwrappers + self._wrappers, kwargs)
/usr/local/lib/python3.8/dist-packages/pluggy/__init__.py:222: in _hookexec
    return self._inner_hookexec(hook, methods, kwargs)
/usr/local/lib/python3.8/dist-packages/pluggy/__init__.py:214: in <lambda>
    hook.multicall(
/usr/local/lib/python3.8/dist-packages/_pytest/fixtures.py:826: in pytest_fixture_setup
    result = call_fixture_func(fixturefunc, request, kwargs)
/usr/local/lib/python3.8/dist-packages/_pytest/fixtures.py:718: in call_fixture_func
    res = fixturefunc(**kwargs)
tests/utils/bdd_utils.py:78: in wrapper
    return fun(*ba.args, **ba.kwargs)
tests/oneclient/steps/auth_steps.py:16: in default_mount
    users[user].mount_client('oneclient-1', 'client1', hosts, env_desc, token)
tests/utils/user_utils.py:72: in mount_client
    rpyc_connection = self.get_rpyc_connection(hosts[client_host_alias])
tests/utils/user_utils.py:61: in get_rpyc_connection
    self._rpyc_connections[client_host] = self._create_rpyc_connection(client_host_dict)
tests/utils/user_utils.py:129: in _create_rpyc_connection
    rpyc_connection = self._connect_to_rpyc(client_host_ip, port)
<decorator-gen-6>:2: in _connect_to_rpyc
    ???
tests/utils/utils.py:95: in wrapper
    return fun(*args, **kwargs)
tests/utils/user_utils.py:142: in _connect_to_rpyc
    return rpyc.classic.connect(ip, port)
/usr/local/lib/python3.8/dist-packages/rpyc/utils/classic.py:70: in connect
    return factory.connect(host, port, SlaveService, ipv6 = ipv6, keepalive = keepalive)
/usr/local/lib/python3.8/dist-packages/rpyc/utils/factory.py:93: in connect
    s = SocketStream.connect(host, port, ipv6=ipv6, keepalive=keepalive)
/usr/local/lib/python3.8/dist-packages/rpyc/core/stream.py:154: in connect
    return cls(cls._connect(host, port, **kwargs))
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

cls = <class 'rpyc.core.stream.SocketStream'>, host = '172.17.0.7', port = 24499
family = <AddressFamily.AF_INET: 2>, socktype = <SocketKind.SOCK_STREAM: 1>
proto = 6, timeout = 3, nodelay = False, keepalive = False

    @classmethod
    def _connect(cls, host, port, family = socket.AF_INET, socktype = socket.SOCK_STREAM,
            proto = 0, timeout = 3, nodelay = False, keepalive = False):
        family, socktype, proto, _, sockaddr = socket.getaddrinfo(host, port, family,
            socktype, proto)[0]
        s = socket.socket(family, socktype, proto)
        s.settimeout(timeout)
>       s.connect(sockaddr)
E       ConnectionRefusedError: [Errno 111] Connection refused

/usr/local/lib/python3.8/dist-packages/rpyc/core/stream.py:112: ConnectionRefusedError