{"name": "test_stock_return_multy[Uzbekistan]", "status": "broken", "statusDetails": {"message": "urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz', port=443): Max retries exceeded with url: /stock-return/place (Caused by NameResolutionError(\"HTTPSConnection(host='dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz', port=443): Failed to resolve 'dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz' ([Errno -2] Name or service not known)\"))", "trace": "self = <HTTPSConnection(host='dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz', port=443) at 0x774f82db3f90>\n\n    def _new_conn(self) -> socket.socket:\n        \"\"\"Establish a socket connection and set nodelay settings on it.\n    \n        :return: New socket connection.\n        \"\"\"\n        try:\n>           sock = connection.create_connection(\n                (self._dns_host, self.port),\n                self.timeout,\n                source_address=self.source_address,\n                socket_options=self.socket_options,\n            )\n\n/usr/local/lib/python3.11/site-packages/urllib3/connection.py:204: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n/usr/local/lib/python3.11/site-packages/urllib3/util/connection.py:60: in create_connection\n    for res in socket.getaddrinfo(host, port, family, socket.SOCK_STREAM):\n               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nhost = 'dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz', port = 443\nfamily = <AddressFamily.AF_UNSPEC: 0>, type = <SocketKind.SOCK_STREAM: 1>\nproto = 0, flags = 0\n\n    def getaddrinfo(host, port, family=0, type=0, proto=0, flags=0):\n        \"\"\"Resolve host and port into list of address info entries.\n    \n        Translate the host/port argument into a sequence of 5-tuples that contain\n        all the necessary arguments for creating a socket connected to that service.\n        host is a domain name, a string representation of an IPv4/v6 address or\n        None. port is a string service name such as 'http', a numeric port number or\n        None. By passing None as the value of host and port, you can pass NULL to\n        the underlying C API.\n    \n        The family, type and proto arguments can be optionally specified in order to\n        narrow the list of addresses returned. Passing zero as a value for each of\n        these arguments selects the full range of results.\n        \"\"\"\n        # We override this function since we want to translate the numeric family\n        # and socket type values to enum constants.\n        addrlist = []\n>       for res in _socket.getaddrinfo(host, port, family, type, proto, flags):\n                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nE       socket.gaierror: [Errno -2] Name or service not known\n\n/usr/local/lib/python3.11/socket.py:974: gaierror\n\nThe above exception was the direct cause of the following exception:\n\nself = <urllib3.connectionpool.HTTPSConnectionPool object at 0x774f8013de50>\nmethod = 'POST', url = '/stock-return/place', body = '{}'\nheaders = HTTPHeaderDict({'Accept': 'application/json', 'User-Agent': 'Swagger-Codegen/1.0.234+develop/python', 'x-aer-mock-hub'...57-d82a1ad83457', 'Content-Type': 'application/json', 'x-aer-test-type': 'auto', 'x-aer-app-name': 'python-autotests'})\nretries = Retry(total=0, connect=None, read=None, redirect=None, status=None)\nredirect = False, assert_same_host = False, timeout = None, pool_timeout = None\nrelease_conn = True, chunked = False, body_pos = None, preload_content = True\ndecode_content = True, response_kw = {}\nparsed_url = Url(scheme=None, auth=None, host=None, port=None, path='/stock-return/place', query=None, fragment=None)\ndestination_scheme = None, conn = None, release_this_conn = True\nhttp_tunnel_required = False, err = None, clean_exit = False\n\n    def urlopen(  # type: ignore[override]\n        self,\n        method: str,\n        url: str,\n        body: _TYPE_BODY | None = None,\n        headers: typing.Mapping[str, str] | None = None,\n        retries: Retry | bool | int | None = None,\n        redirect: bool = True,\n        assert_same_host: bool = True,\n        timeout: _TYPE_TIMEOUT = _DEFAULT_TIMEOUT,\n        pool_timeout: int | None = None,\n        release_conn: bool | None = None,\n        chunked: bool = False,\n        body_pos: _TYPE_BODY_POSITION | None = None,\n        preload_content: bool = True,\n        decode_content: bool = True,\n        **response_kw: typing.Any,\n    ) -> BaseHTTPResponse:\n        \"\"\"\n        Get a connection from the pool and perform an HTTP request. This is the\n        lowest level call for making a request, so you'll need to specify all\n        the raw details.\n    \n        .. note::\n    \n           More commonly, it's appropriate to use a convenience method\n           such as :meth:`request`.\n    \n        .. note::\n    \n           `release_conn` will only behave as expected if\n           `preload_content=False` because we want to make\n           `preload_content=False` the default behaviour someday soon without\n           breaking backwards compatibility.\n    \n        :param method:\n            HTTP request method (such as GET, POST, PUT, etc.)\n    \n        :param url:\n            The URL to perform the request on.\n    \n        :param body:\n            Data to send in the request body, either :class:`str`, :class:`bytes`,\n            an iterable of :class:`str`/:class:`bytes`, or a file-like object.\n    \n        :param headers:\n            Dictionary of custom headers to send, such as User-Agent,\n            If-None-Match, etc. If None, pool headers are used. If provided,\n            these headers completely replace any pool-specific headers.\n    \n        :param retries:\n            Configure the number of retries to allow before raising a\n            :class:`~urllib3.exceptions.MaxRetryError` exception.\n    \n            If ``None`` (default) will retry 3 times, see ``Retry.DEFAULT``. Pass a\n            :class:`~urllib3.util.retry.Retry` object for fine-grained control\n            over different types of retries.\n            Pass an integer number to retry connection errors that many times,\n            but no other types of errors. Pass zero to never retry.\n    \n            If ``False``, then retries are disabled and any exception is raised\n            immediately. Also, instead of raising a MaxRetryError on redirects,\n            the redirect response will be returned.\n    \n        :type retries: :class:`~urllib3.util.retry.Retry`, False, or an int.\n    \n        :param redirect:\n            If True, automatically handle redirects (status codes 301, 302,\n            303, 307, 308). Each redirect counts as a retry. Disabling retries\n            will disable redirect, too.\n    \n        :param assert_same_host:\n            If ``True``, will make sure that the host of the pool requests is\n            consistent else will raise HostChangedError. When ``False``, you can\n            use the pool on an HTTP proxy and request foreign hosts.\n    \n        :param timeout:\n            If specified, overrides the default timeout for this one\n            request. It may be a float (in seconds) or an instance of\n            :class:`urllib3.util.Timeout`.\n    \n        :param pool_timeout:\n            If set and the pool is set to block=True, then this method will\n            block for ``pool_timeout`` seconds and raise EmptyPoolError if no\n            connection is available within the time period.\n    \n        :param bool preload_content:\n            If True, the response's body will be preloaded into memory.\n    \n        :param bool decode_content:\n            If True, will attempt to decode the body based on the\n            'content-encoding' header.\n    \n        :param release_conn:\n            If False, then the urlopen call will not release the connection\n            back into the pool once a response is received (but will release if\n            you read the entire contents of the response such as when\n            `preload_content=True`). This is useful if you're not preloading\n            the response's content immediately. You will need to call\n            ``r.release_conn()`` on the response ``r`` to return the connection\n            back into the pool. If None, it takes the value of ``preload_content``\n            which defaults to ``True``.\n    \n        :param bool chunked:\n            If True, urllib3 will send the body using chunked transfer\n            encoding. Otherwise, urllib3 will send the body using the standard\n            content-length form. Defaults to False.\n    \n        :param int body_pos:\n            Position to seek to in file-like body in the event of a retry or\n            redirect. Typically this won't need to be set because urllib3 will\n            auto-populate the value when needed.\n        \"\"\"\n        parsed_url = parse_url(url)\n        destination_scheme = parsed_url.scheme\n    \n        if headers is None:\n            headers = self.headers\n    \n        if not isinstance(retries, Retry):\n            retries = Retry.from_int(retries, redirect=redirect, default=self.retries)\n    \n        if release_conn is None:\n            release_conn = preload_content\n    \n        # Check host\n        if assert_same_host and not self.is_same_host(url):\n            raise HostChangedError(self, url, retries)\n    \n        # Ensure that the URL we're connecting to is properly encoded\n        if url.startswith(\"/\"):\n            url = to_str(_encode_target(url))\n        else:\n            url = to_str(parsed_url.url)\n    \n        conn = None\n    \n        # Track whether `conn` needs to be released before\n        # returning/raising/recursing. Update this variable if necessary, and\n        # leave `release_conn` constant throughout the function. That way, if\n        # the function recurses, the original value of `release_conn` will be\n        # passed down into the recursive call, and its value will be respected.\n        #\n        # See issue #651 [1] for details.\n        #\n        # [1] <https://github.com/urllib3/urllib3/issues/651>\n        release_this_conn = release_conn\n    \n        http_tunnel_required = connection_requires_http_tunnel(\n            self.proxy, self.proxy_config, destination_scheme\n        )\n    \n        # Merge the proxy headers. Only done when not using HTTP CONNECT. We\n        # have to copy the headers dict so we can safely change it without those\n        # changes being reflected in anyone else's copy.\n        if not http_tunnel_required:\n            headers = headers.copy()  # type: ignore[attr-defined]\n            headers.update(self.proxy_headers)  # type: ignore[union-attr]\n    \n        # Must keep the exception bound to a separate variable or else Python 3\n        # complains about UnboundLocalError.\n        err = None\n    \n        # Keep track of whether we cleanly exited the except block. This\n        # ensures we do proper cleanup in finally.\n        clean_exit = False\n    \n        # Rewind body position, if needed. Record current position\n        # for future rewinds in the event of a redirect/retry.\n        body_pos = set_file_position(body, body_pos)\n    \n        try:\n            # Request a connection from the queue.\n            timeout_obj = self._get_timeout(timeout)\n            conn = self._get_conn(timeout=pool_timeout)\n    \n            conn.timeout = timeout_obj.connect_timeout  # type: ignore[assignment]\n    \n            # Is this a closed/new connection that requires CONNECT tunnelling?\n            if self.proxy is not None and http_tunnel_required and conn.is_closed:\n                try:\n                    self._prepare_proxy(conn)\n                except (BaseSSLError, OSError, SocketTimeout) as e:\n                    self._raise_timeout(\n                        err=e, url=self.proxy.url, timeout_value=conn.timeout\n                    )\n                    raise\n    \n            # If we're going to release the connection in ``finally:``, then\n            # the response doesn't need to know about the connection. Otherwise\n            # it will also try to release it and we'll have a double-release\n            # mess.\n            response_conn = conn if not release_conn else None\n    \n            # Make the request on the HTTPConnection object\n>           response = self._make_request(\n                conn,\n                method,\n                url,\n                timeout=timeout_obj,\n                body=body,\n                headers=headers,\n                chunked=chunked,\n                retries=retries,\n                response_conn=response_conn,\n                preload_content=preload_content,\n                decode_content=decode_content,\n                **response_kw,\n            )\n\n/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py:787: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py:488: in _make_request\n    raise new_e\n/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py:464: in _make_request\n    self._validate_conn(conn)\n/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py:1093: in _validate_conn\n    conn.connect()\n/usr/local/lib/python3.11/site-packages/urllib3/connection.py:759: in connect\n    self.sock = sock = self._new_conn()\n                       ^^^^^^^^^^^^^^^^\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = <HTTPSConnection(host='dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz', port=443) at 0x774f82db3f90>\n\n    def _new_conn(self) -> socket.socket:\n        \"\"\"Establish a socket connection and set nodelay settings on it.\n    \n        :return: New socket connection.\n        \"\"\"\n        try:\n            sock = connection.create_connection(\n                (self._dns_host, self.port),\n                self.timeout,\n                source_address=self.source_address,\n                socket_options=self.socket_options,\n            )\n        except socket.gaierror as e:\n>           raise NameResolutionError(self.host, self, e) from e\nE           urllib3.exceptions.NameResolutionError: HTTPSConnection(host='dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz', port=443): Failed to resolve 'dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz' ([Errno -2] Name or service not known)\n\n/usr/local/lib/python3.11/site-packages/urllib3/connection.py:211: NameResolutionError\n\nThe above exception was the direct cause of the following exception:\n\nself = <tests.wms.test_assembly.test_stock_return.TestStockReturn object at 0x774f88b0b950>\nwms_warehouses_storage_cells = WMSProviderWarehouseStockDTO(warehouse=WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff...=None), provider=None, stocks=<src.framework.wms.builders.availability.stock.WMSStockBuilder object at 0x774f70249ad0>)\n\n    def test_stock_return_multy(self, wms_warehouses_storage_cells):\n        with allure.step(\"builder init\"):\n            order = WMSOrderBuilder(\n                warehouse=wms_warehouses_storage_cells.warehouse,\n                user=wms_warehouses_storage_cells.stocks.user,\n                items=wms_warehouses_storage_cells.stocks.items,\n                provider=wms_warehouses_storage_cells.warehouse.providers[0],\n                headers=wms_warehouses_storage_cells.stocks.headers,\n                clear=True,\n            ).login_or_refresh()\n        order.outbound_flow_with_packing().state_canceled()\n        stock_return = StockReturnBuilder(\n            order_id=order.order.order_id,\n            user=wms_warehouses_storage_cells.stocks.user,\n            wall_cell_barcode=order.sorting.data.orders[order.order.order_id].wall_cell_barcode,\n            warehouse=order.warehouse,\n            headers=order.headers,\n        ).login_or_refresh()\n        current_task = stock_return.get_worker_active_tasks()\n        assert not current_task.has_active_task, f\"user have current task {stock_return.data.task}\"\n        (\n            stock_return.add_wall_cell_to_task()\n            .emptying_cell()\n>           .change_task_to_placing()\n             ^^^^^^^^^^^^^^^^^^^^^^^^\n            .place_sku_from_boxes()\n            .change_task_to_complete()\n        )\n\ntests/wms/test_assembly/test_stock_return.py:36: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \nsrc/framework/wms/builders/assembly/stock_return.py:151: in change_task_to_placing\n    StockReturnApi(headers=self.headers).stock_return_place_post()\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api/stock_return_api.py:606: in stock_return_place_post\n    return self.stock_return_place_post_with_http_info(**kwargs)  # noqa: E501\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api/stock_return_api.py:663: in stock_return_place_post_with_http_info\n    return self.api_client.call_api(\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api_client.py:339: in call_api\n    return self.__call_api(resource_path, method,\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api_client.py:153: in __call_api\n    response_data = self.request(\n/usr/local/lib/python3.11/site-packages/qacl_dm_wms_be_service_assembly/api_client.py:383: in request\n    return self.rest_client.POST(url,\n/usr/local/lib/python3.11/site-packages/dm_qalib_http/rest.py:286: in POST\n    return self.request(\"POST\", url,\n/usr/local/lib/python3.11/site-packages/dm_qalib_http/rest.py:161: in request\n    r = self.pool_manager.request(\n/usr/local/lib/python3.11/site-packages/urllib3/_request_methods.py:143: in request\n    return self.request_encode_body(\n/usr/local/lib/python3.11/site-packages/urllib3/_request_methods.py:278: in request_encode_body\n    return self.urlopen(method, url, **extra_kw)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/urllib3/poolmanager.py:457: in urlopen\n    response = conn.urlopen(method, u.request_uri, **kw)\n               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py:871: in urlopen\n    return self.urlopen(\n/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py:871: in urlopen\n    return self.urlopen(\n/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py:871: in urlopen\n    return self.urlopen(\n/usr/local/lib/python3.11/site-packages/urllib3/connectionpool.py:841: in urlopen\n    retries = retries.increment(\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = Retry(total=0, connect=None, read=None, redirect=None, status=None)\nmethod = 'POST', url = '/stock-return/place', response = None\nerror = NameResolutionError(\"HTTPSConnection(host='dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz', port=443): Failed to resolve 'dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz' ([Errno -2] Name or service not known)\")\n_pool = <urllib3.connectionpool.HTTPSConnectionPool object at 0x774f8013de50>\n_stacktrace = <traceback object at 0x774f82db3e00>\n\n    def increment(\n        self,\n        method: str | None = None,\n        url: str | None = None,\n        response: BaseHTTPResponse | None = None,\n        error: Exception | None = None,\n        _pool: ConnectionPool | None = None,\n        _stacktrace: TracebackType | None = None,\n    ) -> Self:\n        \"\"\"Return a new Retry object with incremented retry counters.\n    \n        :param response: A response object, or None, if the server did not\n            return a response.\n        :type response: :class:`~urllib3.response.BaseHTTPResponse`\n        :param Exception error: An error encountered during the request, or\n            None if the response was received successfully.\n    \n        :return: A new ``Retry`` object.\n        \"\"\"\n        if self.total is False and error:\n            # Disabled, indicate to re-raise the error.\n            raise reraise(type(error), error, _stacktrace)\n    \n        total = self.total\n        if total is not None:\n            total -= 1\n    \n        connect = self.connect\n        read = self.read\n        redirect = self.redirect\n        status_count = self.status\n        other = self.other\n        cause = \"unknown\"\n        status = None\n        redirect_location = None\n    \n        if error and self._is_connection_error(error):\n            # Connect retry?\n            if connect is False:\n                raise reraise(type(error), error, _stacktrace)\n            elif connect is not None:\n                connect -= 1\n    \n        elif error and self._is_read_error(error):\n            # Read retry?\n            if read is False or method is None or not self._is_method_retryable(method):\n                raise reraise(type(error), error, _stacktrace)\n            elif read is not None:\n                read -= 1\n    \n        elif error:\n            # Other retry?\n            if other is not None:\n                other -= 1\n    \n        elif response and response.get_redirect_location():\n            # Redirect retry?\n            if redirect is not None:\n                redirect -= 1\n            cause = \"too many redirects\"\n            response_redirect_location = response.get_redirect_location()\n            if response_redirect_location:\n                redirect_location = response_redirect_location\n            status = response.status\n    \n        else:\n            # Incrementing because of a server error like a 500 in\n            # status_forcelist and the given method is in the allowed_methods\n            cause = ResponseError.GENERIC_ERROR\n            if response and response.status:\n                if status_count is not None:\n                    status_count -= 1\n                cause = ResponseError.SPECIFIC_ERROR.format(status_code=response.status)\n                status = response.status\n    \n        history = self.history + (\n            RequestHistory(method, url, error, status, redirect_location),\n        )\n    \n        new_retry = self.new(\n            total=total,\n            connect=connect,\n            read=read,\n            redirect=redirect,\n            status=status_count,\n            other=other,\n            history=history,\n        )\n    \n        if new_retry.is_exhausted():\n            reason = error or ResponseError(cause)\n>           raise MaxRetryError(_pool, url, reason) from reason  # type: ignore[arg-type]\n            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nE           urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz', port=443): Max retries exceeded with url: /stock-return/place (Caused by NameResolutionError(\"HTTPSConnection(host='dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz', port=443): Failed to resolve 'dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz' ([Errno -2] Name or service not known)\"))\n\n/usr/local/lib/python3.11/site-packages/urllib3/util/retry.py:535: MaxRetryError"}, "steps": [{"name": "builder init", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_availability ", "status": "passed", "attachments": [{"name": "query", "source": "9d32a9bb-6f56-4777-b7c5-07c4f93bf36e-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "46644ad2-b5a1-413e-99d2-dbf0e909cbbf-attachment.json", "type": "application/json"}], "start": 1775205315283, "stop": 1775205315283}, {"name": "AssemblyPackingTable add to database", "status": "passed", "steps": [{"name": "SQLAlchemy query INSERT ", "status": "passed", "attachments": [{"name": "query", "source": "5f8f662d-7c57-4e83-b30b-956066af9012-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "da029ee0-c2f6-4378-a9af-6b5594d3b365-attachment.json", "type": "application/json"}], "start": 1775205315291, "stop": 1775205315291}], "start": 1775205315284, "stop": 1775205315297}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "4ec30c99-797c-479c-9f03-f68e810a0aa3-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "7106e1c1-d2b3-4f9d-8ad0-65ec1d088b53-attachment.json", "type": "application/json"}], "start": 1775205315331, "stop": 1775205315331}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "2e2dd277-c72f-40bb-a84d-b09e6d8f4d8b-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "baf4699a-31d5-4f53-bba2-99ee88ddd4d5-attachment.json", "type": "application/json"}], "start": 1775205315333, "stop": 1775205315333}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "dad46f69-68d6-43a6-909c-8848ab213a3b-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "66d856d4-f5f5-4e14-b18c-e71590b2457b-attachment.json", "type": "application/json"}], "start": 1775205315339, "stop": 1775205315339}, {"name": "SQLAlchemy query UNDEFINED ", "status": "passed", "attachments": [{"name": "query", "source": "da0e7efe-0efa-4b9e-aaa9-b1ba71862703-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "66e0cdd7-484e-47ba-a3c3-8ede6b1f69a7-attachment.json", "type": "application/json"}], "start": 1775205315340, "stop": 1775205315340}, {"name": "Waiter function: login_or_refresh", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/oauth/custom/token", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a2e8c542-60f4-4d64-8866-dbedba5cb135-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "997484ea-8c87-4864-81e5-d550733be4cb-attachment.json", "type": "application/json"}], "start": 1775205315380, "stop": 1775205315380}, {"name": "Response → 200, trace_id: c586589a84aa07fc7404a34db220f859", "status": "passed", "attachments": [{"name": "response.headers", "source": "5b6e4912-1df4-4aaa-aeb8-4eb9bb1cf7fa-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "0060fd25-7551-46db-b266-ddfc4c0092ba-attachment.json", "type": "application/json"}], "start": 1775205315380, "stop": 1775205315380}], "attachments": [{"name": "cURL", "source": "e3aa6cce-ec89-4545-8da1-74d2732c8b11-attachment.txt", "type": "text/plain"}], "start": 1775205315380, "stop": 1775205315380}], "start": 1775205315347, "stop": 1775205315383}], "start": 1775205315264, "stop": 1775205315383}, {"name": "Waiter function: login_or_refresh", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/oauth/custom/token", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a1f74009-f58b-46c1-8085-116f3a709062-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c89e633f-875a-4428-ba7f-79ecc51e3536-attachment.json", "type": "application/json"}], "start": 1775205315413, "stop": 1775205315414}, {"name": "Response → 200, trace_id: dbc824597d520d2e19e2489b96262819", "status": "passed", "attachments": [{"name": "response.headers", "source": "a36920ad-57f6-4fac-8310-d5efddf5bc59-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2cefb81c-bc23-4034-a7a6-87dace300345-attachment.json", "type": "application/json"}], "start": 1775205315414, "stop": 1775205315414}], "attachments": [{"name": "cURL", "source": "263ed9d9-b833-48e8-b71a-3386f3c4979a-attachment.txt", "type": "text/plain"}], "start": 1775205315413, "stop": 1775205315414}], "start": 1775205315383, "stop": 1775205315416}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/supply/ya/api/v1/order", "status": "passed", "attachments": [{"name": "Request", "source": "c9ce0768-0e58-4920-ae38-60cb7e460fd6-attachment.json", "type": "application/json"}, {"name": "Response", "source": "8a5543ba-b09d-491a-b664-e6a88d194718-attachment.json", "type": "application/json"}], "start": 1775205315475, "stop": 1775205315519}, {"name": "Waiter function: wait_order_order_by_platform_tracking_code", "status": "passed", "start": 1775205315520, "stop": 1775205321098}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/create-wave/order", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8dfd5090-41d2-4e2e-8929-8df3aa4c72d8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3cd43787-6271-4b59-837a-f1406af0cfc1-attachment.json", "type": "application/json"}], "start": 1775205327419, "stop": 1775205327419}, {"name": "Response → 200, trace_id: 1ab3ca1057def6fc0007495b34a05e0f", "status": "passed", "attachments": [{"name": "response.headers", "source": "ac445690-0981-4d11-a0ae-3ef84540bf9e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "177f0b0b-0056-41be-aa05-2b4052cfdad1-attachment.json", "type": "application/json"}], "start": 1775205327419, "stop": 1775205327419}], "attachments": [{"name": "cURL", "source": "05a7d12c-7787-4043-9272-162170b68ad6-attachment.txt", "type": "text/plain"}], "start": 1775205327419, "stop": 1775205327420}, {"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/api/v1/account/set-worker-location", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2ec2eb4b-6281-47da-9fec-92c6d2a9d685-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "944e7386-54ac-48e2-9875-b9c3e447796f-attachment.json", "type": "application/json"}], "start": 1775205327467, "stop": 1775205327467}, {"name": "Response → 200, trace_id: e209b9a5f86eb5d8a641dbcc528e4e0a", "status": "passed", "attachments": [{"name": "response.headers", "source": "c2acb609-4063-43f6-880e-0085bacdf88c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "108d145c-9200-4d9c-a8d0-a8810cd62c49-attachment.json", "type": "application/json"}], "start": 1775205327467, "stop": 1775205327467}], "attachments": [{"name": "cURL", "source": "d48c3766-ff33-4c95-962e-c483f6e4a9a9-attachment.txt", "type": "text/plain"}], "start": 1775205327467, "stop": 1775205327467}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task-for-wave", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "41e6dcd7-4541-4d2f-bf60-35a9f32ff1be-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fbaf2db9-082b-4e4b-a65e-62c6c9f48efb-attachment.json", "type": "application/json"}], "start": 1775205327515, "stop": 1775205327515}, {"name": "Response → 200, trace_id: f39901d39656f29c8c0d33c23f8b1061", "status": "passed", "attachments": [{"name": "response.headers", "source": "2e89d6d2-5508-4723-9b9f-aa4ec5b249c3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b1dd223a-a526-49f1-bc43-cbdc42982ea3-attachment.json", "type": "application/json"}], "start": 1775205327515, "stop": 1775205327516}], "attachments": [{"name": "cURL", "source": "5b45e2a2-7822-4fc5-b32d-873d6cb00846-attachment.txt", "type": "text/plain"}], "start": 1775205327515, "stop": 1775205327516}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c5a3822c-443c-4f88-b92a-e68cfc12df48-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b8872a28-7842-4f48-9aa7-4f64722d7254-attachment.json", "type": "application/json"}], "start": 1775205327564, "stop": 1775205327564}, {"name": "Response → 200, trace_id: 9081da6329dbbf7451a9ba42511fac8f", "status": "passed", "attachments": [{"name": "response.headers", "source": "48ac1019-7b51-443b-8c63-a34ae94c7067-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "34badf3a-95c9-4267-a35c-a30a0cd41859-attachment.json", "type": "application/json"}], "start": 1775205327564, "stop": 1775205327565}], "attachments": [{"name": "cURL", "source": "56219abf-f67c-495f-b228-4e748db974cd-attachment.txt", "type": "text/plain"}], "start": 1775205327564, "stop": 1775205327565}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2f50392e-41fc-4d56-abdc-d28825d50745-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "5e7a33a0-f915-4aa5-bfd9-dd3e4d46f788-attachment.json", "type": "application/json"}], "start": 1775205327604, "stop": 1775205327605}, {"name": "Response → 200, trace_id: 000d9e8c4ef1ff84edf2536adbe6012a", "status": "passed", "attachments": [{"name": "response.headers", "source": "70cc81c1-59fc-4739-93bc-ba9745f07812-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "88f1144d-6e3e-47f8-8fb1-66e4c948312c-attachment.json", "type": "application/json"}], "start": 1775205327605, "stop": 1775205327605}], "attachments": [{"name": "cURL", "source": "3f31bbcf-2353-4134-a2a7-4348cb5e3a7f-attachment.txt", "type": "text/plain"}], "start": 1775205327604, "stop": 1775205327605}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/{sortingType}/box/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "183f6981-48ae-4102-8f9e-68bda075a1c8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "240a9834-1db3-4c18-b0dd-c8cc62d867fb-attachment.json", "type": "application/json"}], "start": 1775205327637, "stop": 1775205327637}, {"name": "Response → 200, trace_id: 329212c58dff405440bbaef004f2fc24", "status": "passed", "attachments": [{"name": "response.headers", "source": "9e2c4583-ad01-4c36-a60a-dfefb56fc928-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c5ea7456-2fbd-43c4-887f-fa2461758920-attachment.txt", "type": "text/plain"}], "start": 1775205327637, "stop": 1775205327638}], "attachments": [{"name": "cURL", "source": "a7d65ef7-ac1d-4fa5-9994-6bf018738d06-attachment.txt", "type": "text/plain"}], "start": 1775205327637, "stop": 1775205327638}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/box/assign?boxBarcodes=BX-0000492751&pickingTaskKey=1a1f39578a596471de9371980b64e5fab3f318b9dc8a1bbee06ce5256723f2e4", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c75085a4-69ea-4e1e-a5ce-57ca6ae9cf36-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "acd55b67-1ebd-402c-b38f-c533ffaec932-attachment.json", "type": "application/json"}], "start": 1775205327665, "stop": 1775205327666}, {"name": "Response → 200, trace_id: 6dfa46f0bf55727699f8d6d26294c1b5", "status": "passed", "attachments": [{"name": "response.headers", "source": "4a8e57d1-45e9-4164-82d5-221007fa7067-attachment.json", "type": "application/json"}], "start": 1775205327666, "stop": 1775205327666}], "attachments": [{"name": "cURL", "source": "91afa0af-0bbf-47c5-af62-82750932eee6-attachment.txt", "type": "text/plain"}], "start": 1775205327665, "stop": 1775205327666}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/sku-cell/inc-by-sku-barcode", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "063c9442-53d2-48fa-b2ab-a162f08ea89a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3f3e04c2-666f-40be-91c4-f9dc28f9fb7d-attachment.json", "type": "application/json"}], "start": 1775205327696, "stop": 1775205327696}, {"name": "Response → 200, trace_id: fec892554a56dfdc4acf063eda4931a7", "status": "passed", "attachments": [{"name": "response.headers", "source": "981ae9b5-8207-4b64-a95e-772c9f401863-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4f7ab578-a6de-42b4-95df-3d4ba0059dcd-attachment.json", "type": "application/json"}], "start": 1775205327696, "stop": 1775205327696}], "attachments": [{"name": "cURL", "source": "eebde59b-8c63-4c0f-8a1c-c47bcd6329bc-attachment.txt", "type": "text/plain"}], "start": 1775205327696, "stop": 1775205327696}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task/complete-step?taskKey=1a1f39578a596471de9371980b64e5fab3f318b9dc8a1bbee06ce5256723f2e4&skuId=4100000000000052786&cellBarcode=QA-75205313135672320&cellId=488019", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9b1eaffd-13f9-4ad5-9814-5b22c4531780-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "bb75c5eb-e13b-4446-918a-fe9ca514e65f-attachment.json", "type": "application/json"}], "start": 1775205327781, "stop": 1775205327781}, {"name": "Response → 200, trace_id: 50d88452c9752aded5eb9019c4ce14da", "status": "passed", "attachments": [{"name": "response.headers", "source": "a2b4b389-6768-4958-9b4a-afa9f6840a27-attachment.json", "type": "application/json"}], "start": 1775205327781, "stop": 1775205327781}], "attachments": [{"name": "cURL", "source": "7ddaa588-1ce0-4f8e-a96f-781795cb5fa0-attachment.txt", "type": "text/plain"}], "start": 1775205327781, "stop": 1775205327781}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/picking/task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c931acad-9459-4a2c-ab7c-483f6aadc2be-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "10b8a902-dbd7-4273-be40-677d0ad95e51-attachment.json", "type": "application/json"}], "start": 1775205327813, "stop": 1775205327814}, {"name": "Response → 200, trace_id: f20a0a7a0e54517a55c0e9be4851004a", "status": "passed", "attachments": [{"name": "response.headers", "source": "693a5b4d-2469-4568-8b0f-aff9dc6bbe0f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3482bf0a-daef-4d21-bbcc-e53b13de3692-attachment.json", "type": "application/json"}], "start": 1775205327814, "stop": 1775205327814}], "attachments": [{"name": "cURL", "source": "3467eae8-e462-4b05-bf60-6ff6d6a4549d-attachment.txt", "type": "text/plain"}], "start": 1775205327813, "stop": 1775205327814}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/consolidation/cell-pre/bind-task-boxes", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b1bccfd7-2da1-496a-a12e-daf6f5a902e2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e70ed27d-8091-4cc2-a73e-b5541c46fbb3-attachment.json", "type": "application/json"}], "start": 1775205327841, "stop": 1775205327841}, {"name": "Response → 200, trace_id: 5da95f3ae9a4d0e966f1c0b4ee0b8592", "status": "passed", "attachments": [{"name": "response.headers", "source": "de1e6064-bc01-4924-b5fa-ab8e0228165d-attachment.json", "type": "application/json"}], "start": 1775205327841, "stop": 1775205327841}], "attachments": [{"name": "cURL", "source": "52741024-6db5-4e83-8f20-45d50c6bc0f1-attachment.txt", "type": "text/plain"}], "start": 1775205327841, "stop": 1775205327842}, {"name": "Waiter function: wait_consolidation_task_start", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/consolidation/tasks/start", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "af90c883-4b6a-4dbe-98c8-4eab62f7b4ca-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c009b9cc-7a8a-4e68-942c-431cb6626c67-attachment.json", "type": "application/json"}], "start": 1775205328258, "stop": 1775205328258}, {"name": "Response → 200, trace_id: 3bf566bca8a2bc27dfea3d10a32fe58c", "status": "passed", "attachments": [{"name": "response.headers", "source": "2bfebe17-5cf2-45a4-8226-ee9b12c5a760-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2b60b169-c893-46dc-8df3-543dcda50f1f-attachment.json", "type": "application/json"}], "start": 1775205328258, "stop": 1775205328258}], "attachments": [{"name": "cURL", "source": "716e9ba5-390e-48fd-b7c7-d076693c97f4-attachment.txt", "type": "text/plain"}], "start": 1775205328258, "stop": 1775205328259}], "start": 1775205327844, "stop": 1775205328262}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/consolidation/tasks/finish", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4dd682de-df5b-499d-81b0-de1682d7dab6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "929319a4-a220-4ab4-966d-cb6b15ac70ca-attachment.json", "type": "application/json"}], "start": 1775205328341, "stop": 1775205328341}, {"name": "Response → 200, trace_id: 59fb1997fa68af2b89801f67c771b23a", "status": "passed", "attachments": [{"name": "response.headers", "source": "6daec13d-c3d5-4eda-b569-6e5a1a8b5a60-attachment.json", "type": "application/json"}], "start": 1775205328341, "stop": 1775205328341}], "attachments": [{"name": "cURL", "source": "55d088dc-c4f8-42c5-bc50-6f41fcd6b303-attachment.txt", "type": "text/plain"}], "start": 1775205328341, "stop": 1775205328341}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/create-task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "02585bb2-0dfd-47c2-a575-70f65ffc539b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e8c6460f-bd83-488c-8f20-e90712d594ec-attachment.json", "type": "application/json"}], "start": 1775205328377, "stop": 1775205328377}, {"name": "Response → 200, trace_id: 50cd541bd59c6a31865d7296a34bee18", "status": "passed", "attachments": [{"name": "response.headers", "source": "1005f343-eece-4f4b-a6e4-4962fcd8da88-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "84b605d8-9b98-4891-a9be-8f8cd5c149d7-attachment.json", "type": "application/json"}], "start": 1775205328377, "stop": 1775205328377}], "attachments": [{"name": "cURL", "source": "4d60b57b-eddd-48de-9356-7d9ad6825850-attachment.txt", "type": "text/plain"}], "start": 1775205328377, "stop": 1775205328377}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/boxes", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1318dc7e-84e1-4675-9d39-d8dda978e82f-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "0e06920c-edb3-46ff-9374-fca6e6d5a94c-attachment.json", "type": "application/json"}], "start": 1775205328428, "stop": 1775205328429}, {"name": "Response → 200, trace_id: 4b13ef7d147a8a17e48439ba929d10da", "status": "passed", "attachments": [{"name": "response.headers", "source": "3d8141f9-c7b1-4060-9c13-b90918ccb31a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c9d546fb-bec8-4a8b-96cf-fb0e5e03f708-attachment.json", "type": "application/json"}], "start": 1775205328429, "stop": 1775205328429}], "attachments": [{"name": "cURL", "source": "1c385747-9e2c-45c7-8078-9b93510822e0-attachment.txt", "type": "text/plain"}], "start": 1775205328428, "stop": 1775205328429}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/add-box-to-task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "da4c12cc-678f-4534-8eeb-9756d30e36c2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6b166616-aa2e-4eb8-af47-e2ee5ed4e937-attachment.json", "type": "application/json"}], "start": 1775205328479, "stop": 1775205328479}, {"name": "Response → 200, trace_id: 58c9f08d5bccbd2be08e5f412803f2b2", "status": "passed", "attachments": [{"name": "response.headers", "source": "11bae7fa-461d-4642-a696-8eb5b1a4498d-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "3fe0677c-5ebf-4e5f-b225-8d3d79d4dae6-attachment.json", "type": "application/json"}], "start": 1775205328479, "stop": 1775205328479}], "attachments": [{"name": "cURL", "source": "603c86a5-02b3-4cb5-ad29-28038b600555-attachment.txt", "type": "text/plain"}], "start": 1775205328479, "stop": 1775205328479}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/move-in-progress?sortingTaskId=161032", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "78c7aafd-9be7-460f-9e46-deb0b025a334-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b150b0e1-9f00-4c9e-a7b8-486c67d903d0-attachment.json", "type": "application/json"}], "start": 1775205328502, "stop": 1775205328502}, {"name": "Response → 200, trace_id: b72e5eb63adf39c9f3b1e3bce04c63dc", "status": "passed", "attachments": [{"name": "response.headers", "source": "62740089-ecc4-4ae5-9647-f31013e5883a-attachment.json", "type": "application/json"}], "start": 1775205328502, "stop": 1775205328502}], "attachments": [{"name": "cURL", "source": "7a3fb7cd-206b-412a-ad85-7dbd7dde38fe-attachment.txt", "type": "text/plain"}], "start": 1775205328502, "stop": 1775205328502}, {"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/api/v1/account/set-worker-location", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "bef3964f-48aa-4a44-8c3a-666686d27964-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b9a019ed-9b97-4216-905d-32b5f23fc9bc-attachment.json", "type": "application/json"}], "start": 1775205328535, "stop": 1775205328535}, {"name": "Response → 200, trace_id: b188f305eb3939c5969147716f12bd23", "status": "passed", "attachments": [{"name": "response.headers", "source": "f0e5dc71-9b0b-44f5-bbdb-826d5cfdf6ad-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c20d2e23-7e87-4515-a461-ca505dda9399-attachment.json", "type": "application/json"}], "start": 1775205328535, "stop": 1775205328535}], "attachments": [{"name": "cURL", "source": "6d71096a-dd76-4aec-ac87-a567ae86dce6-attachment.txt", "type": "text/plain"}], "start": 1775205328535, "stop": 1775205328535}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/ORDER/check-requirements", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f89e49a7-eb8d-4d54-a9f8-9a5feb34294d-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "41f937bd-34c7-4958-a587-5cd9808e9f17-attachment.json", "type": "application/json"}], "start": 1775205328607, "stop": 1775205328607}, {"name": "Response → 200, trace_id: 46f78829ae13efd3ecc6acdabbff49ef", "status": "passed", "attachments": [{"name": "response.headers", "source": "2e2c0ec2-fb5d-42f6-a00b-f3d54e38f21b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "b5d5dfca-884c-4368-968a-233bad701273-attachment.json", "type": "application/json"}], "start": 1775205328607, "stop": 1775205328607}], "attachments": [{"name": "cURL", "source": "ae527b3f-4499-46e5-943f-f8f31181fec1-attachment.txt", "type": "text/plain"}], "start": 1775205328607, "stop": 1775205328607}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/ORDER/box/complete", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1fe1c2fa-1a23-4380-8d2a-913fe91768aa-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0f1d4a26-534d-4bb0-9dd6-bd005d5c389a-attachment.json", "type": "application/json"}], "start": 1775205328645, "stop": 1775205328646}, {"name": "Response → 200, trace_id: 2c88ffa4799f6db881d28eacaed8bca9", "status": "passed", "attachments": [{"name": "response.headers", "source": "0a3c3c6e-c0b1-4aab-b610-da3a232bc0a9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6731364c-e3e3-4ebe-9e7c-a68926629729-attachment.json", "type": "application/json"}], "start": 1775205328646, "stop": 1775205328646}], "attachments": [{"name": "cURL", "source": "7ebe0d3e-a829-4d86-83b5-a27ef59edb37-attachment.txt", "type": "text/plain"}], "start": 1775205328645, "stop": 1775205328646}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/multi-barcode/box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "25e61a8a-4a54-460d-b8dd-f897ecdcbaaf-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5e3f0c81-536f-4ad2-bb83-59c860158229-attachment.json", "type": "application/json"}], "start": 1775205328688, "stop": 1775205328688}, {"name": "Response → 200, trace_id: 923a4fc9696f6504cc96dec6e18c1293", "status": "passed", "attachments": [{"name": "response.headers", "source": "0b5f0292-5584-4376-9bb0-0c91fb8f03f8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a6171bb8-b443-4fcf-97aa-f42be2a18858-attachment.json", "type": "application/json"}], "start": 1775205328688, "stop": 1775205328689}], "attachments": [{"name": "cURL", "source": "3f6e6b89-8de0-4223-946a-245de18fd516-attachment.txt", "type": "text/plain"}], "start": 1775205328688, "stop": 1775205328689}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "c502fce2-466e-47c2-9bf0-5bd257bc3d2e-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "7a47a6e7-13e7-4d23-ab67-54f0749b9722-attachment.json", "type": "application/json"}], "start": 1775205328707, "stop": 1775205328707}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/assign/cell?orderId=4278192440&wallCellBarcode=12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ea9a9300-6b7c-4600-96e3-c16a9afd74e6-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "41efd8a4-228b-4601-b660-d2859f491c46-attachment.json", "type": "application/json"}], "start": 1775205328743, "stop": 1775205328744}, {"name": "Response → 200, trace_id: a8c6c6a859caf86ec477007a0a24c5bd", "status": "passed", "attachments": [{"name": "response.headers", "source": "612a3a66-af55-48c3-aeb7-ac6ad9e361e8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "04d87c05-bee8-4ba9-b1d3-21ee5b07bc2a-attachment.txt", "type": "text/plain"}], "start": 1775205328744, "stop": 1775205328744}], "attachments": [{"name": "cURL", "source": "cdb98669-10c1-4a00-bd4a-46b6b350d2a9-attachment.txt", "type": "text/plain"}], "start": 1775205328743, "stop": 1775205328744}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "213cf984-659c-45d4-8156-47116b990b10-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "eabd5ef5-0cce-490f-a3e4-1d22317d0616-attachment.json", "type": "application/json"}], "start": 1775205328756, "stop": 1775205328757}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/wall/cell/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d494cee6-0f3f-4272-a523-96dc01c66511-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "387c8a64-b8ec-49b3-938e-8f1a3d57c617-attachment.json", "type": "application/json"}], "start": 1775205329819, "stop": 1775205329819}, {"name": "Response → 200, trace_id: 9ebb5731995a6bd7955245f69f2ab530", "status": "passed", "attachments": [{"name": "response.headers", "source": "325094bf-6868-49fc-8b3e-df8c8d295def-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2f3941cc-8a59-47df-a34a-831d8501df31-attachment.json", "type": "application/json"}], "start": 1775205329819, "stop": 1775205329819}], "attachments": [{"name": "cURL", "source": "b2b600e2-84c6-4fb1-b35b-cdc61a0b9a03-attachment.txt", "type": "text/plain"}], "start": 1775205329819, "stop": 1775205329819}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/sorting/ORDER/box/complete", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "de58beef-23de-480b-8652-746449713084-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a09679be-c62a-43da-8414-3ad18e13ae13-attachment.json", "type": "application/json"}], "start": 1775205329843, "stop": 1775205329844}, {"name": "Response → 200, trace_id: bfc517b738d56817a2ce0d8872c8a4ef", "status": "passed", "attachments": [{"name": "response.headers", "source": "762f4370-dd57-4b7c-8aab-5aa7bab5bd4e-attachment.json", "type": "application/json"}], "start": 1775205329844, "stop": 1775205329844}], "attachments": [{"name": "cURL", "source": "4a11c0b7-1c6e-4d24-9737-1aad9404c392-attachment.txt", "type": "text/plain"}], "start": 1775205329843, "stop": 1775205329844}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/api/v1/sorting/complete-task", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "005da5df-1d51-40d5-a27a-814883d6d371-attachment.json", "type": "application/json"}], "start": 1775205329863, "stop": 1775205329864}, {"name": "Response → 200, trace_id: 5f7cf2db6fb7667cb2b6907b9bed03c8", "status": "passed", "attachments": [{"name": "response.headers", "source": "ca1649d0-36c3-4691-b961-3d0f5bc4eddd-attachment.json", "type": "application/json"}], "start": 1775205329864, "stop": 1775205329864}], "attachments": [{"name": "cURL", "source": "b83dfa95-a105-4b87-a969-884f0f5679d2-attachment.txt", "type": "text/plain"}], "start": 1775205329863, "stop": 1775205329864}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/wms/order/internal/order/can-be-canceled", "status": "passed", "attachments": [{"name": "Request", "source": "be46186e-fcae-441b-887e-44767bac98e8-attachment.json", "type": "application/json"}, {"name": "Response", "source": "ca31c79c-38c5-4755-b534-f28f6ff29cc9-attachment.json", "type": "application/json"}], "start": 1775205329866, "stop": 1775205329900}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/wms/order/v2/internal/order/cancel", "status": "passed", "attachments": [{"name": "Request", "source": "6ad08af6-ae9d-4bcc-a6f7-1a57277601be-attachment.json", "type": "application/json"}, {"name": "Response", "source": "22c31946-c092-4707-b563-8facc7213862-attachment.json", "type": "application/json"}], "start": 1775205329901, "stop": 1775205329947}, {"name": "Waiter function: login_or_refresh", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-account.k8s-review.dailymail-tech.uz/oauth/custom/token", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "330bda15-5af2-4957-8edf-1059db8c229e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "78927e00-fc18-4fd3-b2e2-c9a9b77b917d-attachment.json", "type": "application/json"}], "start": 1775205329975, "stop": 1775205329976}, {"name": "Response → 200, trace_id: 2603b865ce4ceb377a2b57c44e6d9646", "status": "passed", "attachments": [{"name": "response.headers", "source": "0bfcb875-81c5-44a8-95b6-bd0ff09d0410-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f384aa53-e3a6-4c31-918d-abd765708f09-attachment.json", "type": "application/json"}], "start": 1775205329976, "stop": 1775205329976}], "attachments": [{"name": "cURL", "source": "4488b22b-58af-4529-9dbc-f5823a49a116-attachment.txt", "type": "text/plain"}], "start": 1775205329975, "stop": 1775205329976}], "start": 1775205329948, "stop": 1775205329978}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/task/restore-task-status", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fd569621-ff09-4407-9344-dca556f63e06-attachment.json", "type": "application/json"}], "start": 1775205330002, "stop": 1775205330002}, {"name": "Response → 200, trace_id: f8ac3f6e3128c6349a181d35bfd9fd77", "status": "passed", "attachments": [{"name": "response.headers", "source": "285c4d22-44e3-4d61-ae24-1961f11bc647-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "48d69406-bcea-40a0-8b82-2b388be1e0ae-attachment.json", "type": "application/json"}], "start": 1775205330002, "stop": 1775205330002}], "attachments": [{"name": "cURL", "source": "cd5fb3e4-e43c-400b-959f-dda803e54f79-attachment.txt", "type": "text/plain"}], "start": 1775205330002, "stop": 1775205330002}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/task/restore-task-status", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1bf1df47-3b44-4074-995f-d7b989da7434-attachment.json", "type": "application/json"}], "start": 1775205330023, "stop": 1775205330023}, {"name": "Response → 200, trace_id: a4bb31457e8960dba7f686b27e7b80c9", "status": "passed", "attachments": [{"name": "response.headers", "source": "cf7467d7-00bd-4943-90f0-ce6e60dcda93-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "31025d9a-98d1-4cd1-8448-98620f294fd2-attachment.json", "type": "application/json"}], "start": 1775205330023, "stop": 1775205330023}], "attachments": [{"name": "cURL", "source": "c7a86cef-e8e5-44b7-8515-dbf4e8e9be99-attachment.txt", "type": "text/plain"}], "start": 1775205330023, "stop": 1775205330023}, {"name": "Waiter function: add_wall_cell_to_task", "status": "passed", "steps": [{"name": "Waiter function: wait_stock_return_wall_cell_barcode", "status": "passed", "steps": [{"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/wall-cell/12.18.1.47", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "870a613b-775c-405a-b4b7-5dfdc02ed5e7-attachment.json", "type": "application/json"}], "start": 1775205340071, "stop": 1775205340072}, {"name": "Response → 200, trace_id: 40fcc8c2c334acfdbe3e5a74a596dd5e", "status": "passed", "attachments": [{"name": "response.headers", "source": "6083bc82-21e2-4f6b-9abf-b30a6308d98d-attachment.json", "type": "application/json"}], "start": 1775205340072, "stop": 1775205340072}], "attachments": [{"name": "cURL", "source": "882997f9-c98d-4321-b23a-4d009b24e96e-attachment.txt", "type": "text/plain"}], "start": 1775205340071, "stop": 1775205340072}], "start": 1775205330025, "stop": 1775205340076}, {"name": "Waiter function: wait_return_task_for_wall_cell", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_assembly ", "status": "passed", "attachments": [{"name": "query", "source": "3c597488-579e-49d1-b67b-0ddff2b41738-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "3dbe9367-ccd5-434b-a10f-8c7b2aec4283-attachment.json", "type": "application/json"}], "start": 1775205340094, "stop": 1775205340094}], "start": 1775205340076, "stop": 1775205340094}, {"name": "Waiter function: wait_stock_return_task", "status": "passed", "start": 1775205340094, "stop": 1775205340096}], "start": 1775205330025, "stop": 1775205340096}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/box/BX-0000349035", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "756d165b-669e-479f-a7cb-7efd56275612-attachment.json", "type": "application/json"}], "start": 1775205340326, "stop": 1775205340326}, {"name": "Response → 200, trace_id: 83a34f47441c750aafc31ec31a22fd72", "status": "passed", "attachments": [{"name": "response.headers", "source": "d2b86efc-1585-4b33-8e74-9527ec2c86d1-attachment.json", "type": "application/json"}], "start": 1775205340326, "stop": 1775205340326}], "attachments": [{"name": "cURL", "source": "489cc31a-baae-4505-a68f-432c43a72cd5-attachment.txt", "type": "text/plain"}], "start": 1775205340326, "stop": 1775205340326}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/order", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "44f32ed4-cb53-435f-924b-30ebf4fee6bb-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "7a7ae278-64c0-4227-bf70-0743277ccb53-attachment.json", "type": "application/json"}], "start": 1775205340361, "stop": 1775205340361}, {"name": "Response → 200, trace_id: b0869aa96ca9fa713fdadc1a611e0cff", "status": "passed", "attachments": [{"name": "response.headers", "source": "e8b9b656-24b5-4654-962f-696947114c68-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e8cfc17d-2617-4639-835d-c236c6394e5f-attachment.json", "type": "application/json"}], "start": 1775205340361, "stop": 1775205340361}], "attachments": [{"name": "cURL", "source": "be2e07b9-8c33-423c-b788-2a413f91f42a-attachment.txt", "type": "text/plain"}], "start": 1775205340361, "stop": 1775205340361}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/sku/{skuBarcode}", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d46a3bb5-9c8b-4023-9cd8-d3ea3fc27661-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c36c1f91-988a-4f2e-af2a-331ec18c223f-attachment.json", "type": "application/json"}], "start": 1775205340465, "stop": 1775205340466}, {"name": "Response → 200, trace_id: 59cf1a876671a84b237ac9c20deb2f26", "status": "passed", "attachments": [{"name": "response.headers", "source": "d7cdc611-b41f-4fa0-b6da-f54ff72d11ce-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "96ebc6b6-e290-48f1-9c68-558c4bc20f77-attachment.json", "type": "application/json"}], "start": 1775205340466, "stop": 1775205340466}], "attachments": [{"name": "cURL", "source": "bb89376d-a18f-4e2d-8836-7c40e5b8cc6d-attachment.txt", "type": "text/plain"}], "start": 1775205340465, "stop": 1775205340466}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "966232ea-e2c5-4a71-ac65-a5a25ef1866f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fab3a386-086e-4709-83be-e8488436a986-attachment.json", "type": "application/json"}], "start": 1775205340518, "stop": 1775205340518}, {"name": "Response → 200, trace_id: b3df0eeba0c46d670335a5bc9c567dfa", "status": "passed", "attachments": [{"name": "response.headers", "source": "d63aa4b2-f06e-4cfd-b3d1-ac7295b6f74a-attachment.json", "type": "application/json"}], "start": 1775205340518, "stop": 1775205340518}], "attachments": [{"name": "cURL", "source": "9e30bfaf-af1c-4c4b-ae9b-b4bdee7c4470-attachment.txt", "type": "text/plain"}], "start": 1775205340518, "stop": 1775205340518}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1ce2e5c7-75c4-4ef6-96c6-2d4877d5d908-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c2490bb4-d76c-4288-aab4-4e8f7232a381-attachment.json", "type": "application/json"}], "start": 1775205340560, "stop": 1775205340560}, {"name": "Response → 200, trace_id: 391b43a7d529cc8fc956bfd624610aab", "status": "passed", "attachments": [{"name": "response.headers", "source": "9409ac3f-08ed-42a2-9d38-6519115ea0cb-attachment.json", "type": "application/json"}], "start": 1775205340560, "stop": 1775205340560}], "attachments": [{"name": "cURL", "source": "2ef6ba71-dddd-4ca1-b7de-193898b459b9-attachment.txt", "type": "text/plain"}], "start": 1775205340560, "stop": 1775205340560}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4d9b6c05-6d74-41ce-8415-4bbab14bcb44-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "ce973e2e-cc1b-429c-a41b-3f686fb8de73-attachment.json", "type": "application/json"}], "start": 1775205340612, "stop": 1775205340612}, {"name": "Response → 200, trace_id: 4d693c8429d0da0a26486ae9e176570d", "status": "passed", "attachments": [{"name": "response.headers", "source": "40bf3846-d747-4ae4-8b5c-f62426bc15ff-attachment.json", "type": "application/json"}], "start": 1775205340612, "stop": 1775205340612}], "attachments": [{"name": "cURL", "source": "40c4983e-4151-42b6-ab3b-e4e248150806-attachment.txt", "type": "text/plain"}], "start": 1775205340611, "stop": 1775205340612}, {"name": "POST → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/cell-to-box/add", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9d80fbb5-e994-4ad5-976b-77196516fdca-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "84da6eda-6b85-44d0-8276-5c9fedfcf538-attachment.json", "type": "application/json"}], "start": 1775205340662, "stop": 1775205340662}, {"name": "Response → 200, trace_id: 428a2223f587ee02dac74c316b82968d", "status": "passed", "attachments": [{"name": "response.headers", "source": "0e0ef930-97f4-4bb5-a9e6-7b71995ebc64-attachment.json", "type": "application/json"}], "start": 1775205340662, "stop": 1775205340662}], "attachments": [{"name": "cURL", "source": "0787fa6e-1085-41ea-bebd-e9a677bd61dc-attachment.txt", "type": "text/plain"}], "start": 1775205340662, "stop": 1775205340662}, {"name": "GET → https://dm-wms-be-service-assembly.k8s-review.dailymail-tech.uz/stock-return/can-cell-change", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9f9f1669-d9fa-40cd-9b18-179777b7c3b2-attachment.json", "type": "application/json"}], "start": 1775205340693, "stop": 1775205340693}, {"name": "Response → 200, trace_id: f76c87d668a26243757b5c47095ce349", "status": "passed", "attachments": [{"name": "response.headers", "source": "883fd731-8f82-49a8-8dd4-e87041d67be5-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6db43b36-4976-4f91-9e3e-285bde8218cb-attachment.json", "type": "application/json"}], "start": 1775205340693, "stop": 1775205340693}], "attachments": [{"name": "cURL", "source": "c95acfe0-2201-426c-982a-4f635d79d589-attachment.txt", "type": "text/plain"}], "start": 1775205340693, "stop": 1775205340694}], "attachments": [{"name": "log", "source": "af3f26e6-325f-4798-82e7-4d6abddf4e7a-attachment.txt", "type": "text/plain"}], "parameters": [{"name": "wms_warehouses", "value": "WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff_id='WH_TASHKENT', hub_last_mile_id=0, providers=[WMSProvider(last_mile='YaMarket', city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.ALIEXPRESS_UZ: 12>, last_mile_id=<DeliveryLastMileId.ALIEXPRESS_UZ: 12>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.ALIEXPRESS_UZ: 12>, order_source=<OrderSource.YaMarket: 'YaMarket'>, provider_name='YaMarket')], name='Uzbekistan', description='Бонд Узбекистан', use_datamatrix=False, user=WMSAccount(wms_id=33349, phone='3335000010', role_wms_id=23, zone_id=None, patronymic=None, last_name='', password='1234', first_name='', token='', refresh_token=''), storage_cell=<StorageCells.MA1_1_1_01: 'MA1-1-1-01'>, defected_cell=<DefectedCells.BR_01_01_1_05: 'BR-01-01-1-05'>, overage_cell=<OverageCells.IZ_1_01_01_1_05: 'IZ-1-01-01-1-05'>, weighing_cell=<WeighingCells.WT_1_11_1: 'WT-1-01-1'>, packing_table=<PackingTable.UP_AUTOTEST_01: 'UP-AUTOTEST-01'>, packing_zone_id='', qa_zone=<WMSZoneIds.QA_UZ_ZONE: 31>, email=None, phone=None)"}], "start": 1775205315264, "stop": 1775205340705, "uuid": "86c8390b-265c-4078-831d-00c0adde38e3", "historyId": "4ce6d87c6489e67d84f459d37365d06d", "testCaseId": "bded1c0103c32246d6c84d5767a8abbb", "fullName": "tests.wms.test_assembly.test_stock_return.TestStockReturn#test_stock_return_multy", "labels": [{"name": "feature", "value": "stock-return"}, {"name": "tag", "value": "dm-wms-be-service-assembly"}, {"name": "parentSuite", "value": "tests.wms.test_assembly"}, {"name": "suite", "value": "test_stock_return"}, {"name": "subSuite", "value": "TestStockReturn"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-3-y764olqr"}, {"name": "thread", "value": "22-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.wms.test_assembly.test_stock_return"}], "titlePath": ["tests", "wms", "test_assembly", "test_stock_return.py", "TestStockReturn"]}