{"name": "test_e2e_inbound[wms_inbound_e2e4-params0]", "status": "broken", "statusDetails": {"message": "sqlalchemy.exc.TimeoutError: QueuePool limit of size 1 overflow 10 reached, connection timed out, timeout 30.00 (Background on this error at: https://sqlalche.me/e/20/3o7r)", "trace": "self = <tests.wms.test_e2e_inbound.test_inbound.TestE2EInbound object at 0x757ee06ea0d0>\nparams = {'barcode_count': 3, 'quantity': 9, 'sku_amount': 1}\nwms_inbound_e2e = {'cell': <src.framework.wms.builders.db.cell.AvailableCell object at 0x757edad33110>, 'count_types': {'defected': True...01: 'UP-AUTOTEST-01'>, packing_zone_id='', qa_zone=<WMSZoneIds.QA_UZ_ZONE: 31>, email=None, phone=None), 'zone_id': 31}\n\n    @pytest.mark.parametrize(\n        \"params\", [{\"sku_amount\": randint(1, 3), \"barcode_count\": randint(2, 5), \"quantity\": randint(3, 10)}]\n    )\n    @pytest.mark.parametrize(\n        \"wms_inbound_e2e\",\n        [\n            {\n                \"warehouse\": WMSWarehouses.Troitsk.value,\n                \"zone_id\": WMSWarehouses.Troitsk.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Troitsk.value,\n                \"zone_id\": WMSWarehouses.Troitsk.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": True,\n                    \"overage\": True,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Troitsk.value,\n                \"zone_id\": WMSWarehouses.Troitsk.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": False,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": True,\n                },\n            },\n            # Uzbekistan proper\n            {\n                \"warehouse\": WMSWarehouses.Uzbekistan.value,\n                \"zone_id\": WMSWarehouses.Uzbekistan.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Uzbekistan.value,\n                \"zone_id\": WMSWarehouses.Uzbekistan.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": True,\n                    \"defected\": True,\n                    \"overage\": True,\n                    \"zero\": False,\n                },\n            },\n            {\n                \"warehouse\": WMSWarehouses.Uzbekistan.value,\n                \"zone_id\": WMSWarehouses.Uzbekistan.value.qa_zone.value,\n                \"cell\": None,\n                \"count_types\": {\n                    \"proper\": False,\n                    \"defected\": False,\n                    \"overage\": False,\n                    \"zero\": True,\n                },\n            },\n        ],\n        indirect=True,\n    )\n    def test_e2e_inbound(self, params, wms_inbound_e2e):\n        invoice = WMSInvoiceBuilder(\n            warehouse=wms_inbound_e2e[\"warehouse\"],\n            proper_cell=wms_inbound_e2e[\"cell\"].key,\n        ).set_user_auth(wms_inbound_e2e[\"warehouse\"].user.token)\n        with allure.step(\"clear tasks\"):\n            AcceptanceQueries().clear_worker_tasks(worker_id=wms_inbound_e2e[\"warehouse\"].user.wms_id)\n        invoice.supply.list_with_random_items(\n            items_count=params[\"sku_amount\"],\n            sku_amount=params[\"quantity\"],\n            barcode_count=params[\"barcode_count\"],\n        )\n>       invoice.set_count_types(**wms_inbound_e2e[\"count_types\"]).full_acceptance()\n\ntests/wms/test_e2e_inbound/test_inbound.py:117: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \nsrc/framework/wms/builders/acceptance/invoice/invoice.py:791: in full_acceptance\n    (self.state_awaiting_doc().state_invoice_doc_waiting().state_invoice_doc_requested())\n     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nsrc/framework/wms/builders/acceptance/invoice/invoice.py:613: in state_invoice_doc_waiting\n    wait_invoice(self.invoice_id, status=wait_state)\nsrc/framework/common/utils/utils.py:218: in wrapped_f\n    return Retrying(\n/usr/local/lib/python3.11/site-packages/retrying.py:279: in call\n    return attempt.get(self._wrap_exception)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/retrying.py:326: in get\n    raise exc.with_traceback(tb)\n/usr/local/lib/python3.11/site-packages/retrying.py:273: in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\nsrc/framework/wms/validation/waiters/acceptance.py:37: in wait_invoice\n    invoice: Invoice = AcceptanceQueries().tx_query(Invoice).filter(Invoice.id == supply_id).first()\n                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/dm_qa_common_libs_db_client/logged_query.py:62: in first\n    result = super().first()\n             ^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/query.py:2759: in first\n    return self.limit(1)._iter().first()  # type: ignore\n           ^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/query.py:2857: in _iter\n    result: Union[ScalarResult[_T], Result[_T]] = self.session.execute(\n/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py:2351: in execute\n    return self._execute_internal(\n/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py:2239: in _execute_internal\n    conn = self._connection_for_bind(bind)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py:2108: in _connection_for_bind\n    return trans._connection_for_bind(engine, execution_options)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n<string>:2: in _connection_for_bind\n    ???\n/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/state_changes.py:137: in _go\n    ret_value = fn(self, *arg, **kw)\n                ^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py:1187: in _connection_for_bind\n    conn = bind.connect()\n           ^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py:3293: in connect\n    return self._connection_cls(self)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py:143: in __init__\n    self._dbapi_connection = engine.raw_connection()\n                             ^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py:3317: in raw_connection\n    return self.pool.connect()\n           ^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/base.py:448: in connect\n    return _ConnectionFairy._checkout(self)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/base.py:1272: in _checkout\n    fairy = _ConnectionRecord.checkout(pool)\n            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/base.py:712: in checkout\n    rec = pool._do_get()\n          ^^^^^^^^^^^^^^\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nself = <sqlalchemy.pool.impl.QueuePool object at 0x757ee027bf50>\n\n    def _do_get(self) -> ConnectionPoolEntry:\n        use_overflow = self._max_overflow > -1\n    \n        wait = use_overflow and self._overflow >= self._max_overflow\n        try:\n            return self._pool.get(wait, self._timeout)\n        except sqla_queue.Empty:\n            # don't do things inside of \"except Empty\", because when we say\n            # we timed out or can't connect and raise, Python 3 tells\n            # people the real error is queue.Empty which it isn't.\n            pass\n        if use_overflow and self._overflow >= self._max_overflow:\n            if not wait:\n                return self._do_get()\n            else:\n>               raise exc.TimeoutError(\n                    \"QueuePool limit of size %d overflow %d reached, \"\n                    \"connection timed out, timeout %0.2f\"\n                    % (self.size(), self.overflow(), self._timeout),\n                    code=\"3o7r\",\n                )\nE               sqlalchemy.exc.TimeoutError: QueuePool limit of size 1 overflow 10 reached, connection timed out, timeout 30.00 (Background on this error at: https://sqlalche.me/e/20/3o7r)\n\n/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/impl.py:166: TimeoutError"}, "steps": [{"name": "clear tasks", "status": "passed", "steps": [{"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "0abb5efa-d17e-47a1-9f95-7154d758a72d-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "44b6c6a2-768d-417b-8bca-1f8176d0159a-attachment.json", "type": "application/json"}], "start": 1775433121941, "stop": 1775433121941}, {"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "894a0f3c-8e53-4d14-b81b-35cf803dc9d7-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "9f36c4b9-94a0-4ebb-a50d-4f919967a96f-attachment.json", "type": "application/json"}], "start": 1775433121944, "stop": 1775433121944}, {"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "66a856a4-0a2c-4d16-ab83-b7c2f82470a5-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "7e1b571e-2ecc-4a5d-b73f-407aec2a1d6e-attachment.json", "type": "application/json"}], "start": 1775433121945, "stop": 1775433121945}], "start": 1775433121922, "stop": 1775433121946}, {"name": "invoice creation", "status": "passed", "steps": [{"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/wms/acceptance/invoices/chunked", "status": "passed", "attachments": [{"name": "Request", "source": "5f7e171f-a6fa-4a5c-bf79-f2aab3b75b53-attachment.json", "type": "application/json"}, {"name": "Response", "source": "8ff3a2bc-8924-47ff-b7f9-2aa3002052ec-attachment.json", "type": "application/json"}], "start": 1775433121950, "stop": 1775433121986}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "b87686b6-00dd-42ea-bf5c-2a79ae620164-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "e3624c43-d23f-4e7b-bb48-269136a8f397-attachment.json", "type": "application/json"}], "start": 1775433121992, "stop": 1775433121992}], "start": 1775433121987, "stop": 1775433121993}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "efcf8953-85b3-454d-b2ba-840f815bea5e-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "c591172b-122f-4628-949b-859726446be0-attachment.json", "type": "application/json"}], "start": 1775433122005, "stop": 1775433122005}], "start": 1775433121993, "stop": 1775433122005}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/ff/publish/invoice/chunk", "status": "passed", "attachments": [{"name": "Request", "source": "b541202b-7b8c-4f3d-b0ea-abacc410a6c4-attachment.json", "type": "application/json"}, {"name": "Response", "source": "e495795d-1e58-4829-b4fa-a124217d2208-attachment.json", "type": "application/json"}], "start": 1775433122006, "stop": 1775433122022}, {"name": "Waiter function: wait_sku_info", "status": "passed", "start": 1775433122022, "stop": 1775433124035}, {"name": "Waiter function: wait_availability_sku", "status": "passed", "start": 1775433124035, "stop": 1775433124036}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "12eb81e9-92cb-4235-8de0-ad446c1aafa1-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "f8b1ac82-8380-41ef-9e8b-d27daa25514b-attachment.json", "type": "application/json"}], "start": 1775433124051, "stop": 1775433124051}], "start": 1775433124036, "stop": 1775433124051}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "8a57b959-32c6-4644-acb2-f13b1557d4a7-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "7ea7af41-b2d5-4b2e-a883-36b86c435c1d-attachment.json", "type": "application/json"}], "start": 1775433124062, "stop": 1775433124062}], "start": 1775433124051, "stop": 1775433124062}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1330392f-cb08-4312-a601-b9e3c1b8ee1a-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2687c9e9-2e90-4c5a-bb6e-f6a99a4917c1-attachment.json", "type": "application/json"}], "start": 1775433124150, "stop": 1775433124150}, {"name": "Response → 200, trace_id: 9acb72fee2885505b0a1a6d0fbdf3169", "status": "passed", "attachments": [{"name": "response.headers", "source": "aa351b80-5fde-4cdc-90d0-978189a49ab0-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "21f3fd1c-0b48-49b9-a173-47f85369e2e2-attachment.json", "type": "application/json"}], "start": 1775433124150, "stop": 1775433124150}], "attachments": [{"name": "cURL", "source": "0c19e098-80db-4cac-aec6-c73e2ac185fb-attachment.txt", "type": "text/plain"}], "start": 1775433124150, "stop": 1775433124150}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f7d18e9b-8b44-4271-9e27-46b0c0437c61-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "46f4cb20-1805-43a9-97d9-7a934fb63925-attachment.json", "type": "application/json"}], "start": 1775433124173, "stop": 1775433124173}, {"name": "Response → 200, trace_id: 9f004856cb1924f5748366203b997647", "status": "passed", "attachments": [{"name": "response.headers", "source": "2cf33119-5d65-4bd5-a4e8-643e777762c6-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "d081ded5-6487-4236-899a-52a83e9d5295-attachment.json", "type": "application/json"}], "start": 1775433124173, "stop": 1775433124173}], "attachments": [{"name": "cURL", "source": "292e06ff-6d21-4762-a135-2176e43e1821-attachment.txt", "type": "text/plain"}], "start": 1775433124173, "stop": 1775433124174}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/arrival-invoice?invoiceBarcode=WMS7543312215", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a5d3ad3f-446f-418d-a192-2e23fbbcf071-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "edda2c40-3bab-489e-a25d-a06fa5504829-attachment.json", "type": "application/json"}], "start": 1775433124276, "stop": 1775433124276}, {"name": "Response → 200, trace_id: b205032c8f67cecc50287939babd8acb", "status": "passed", "attachments": [{"name": "response.headers", "source": "63ab10b0-2fed-4295-87ee-5269e0a93f69-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "4a660910-2767-44d1-aca3-0997fe09bda5-attachment.json", "type": "application/json"}], "start": 1775433124276, "stop": 1775433124277}], "attachments": [{"name": "cURL", "source": "9199cf01-7840-4cfe-b84f-ade2b0630fb2-attachment.txt", "type": "text/plain"}], "start": 1775433124276, "stop": 1775433124277}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-pallet-to-process", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "172962e3-f50d-475c-845e-4d52c52e957d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "96e0b545-337f-47fc-8356-a8edc90a14df-attachment.json", "type": "application/json"}], "start": 1775433124328, "stop": 1775433124329}, {"name": "Response → 200, trace_id: b65f77471e9c2762eba461598ef9ee2b", "status": "passed", "attachments": [{"name": "response.headers", "source": "2edcfcb9-e4b1-49dc-be4d-3fa88e185615-attachment.json", "type": "application/json"}], "start": 1775433124329, "stop": 1775433124329}], "attachments": [{"name": "cURL", "source": "fe5a474d-bcde-461d-8896-4b03cf6b43cf-attachment.txt", "type": "text/plain"}], "start": 1775433124328, "stop": 1775433124329}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/link-pallet-to-zone", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "61985f69-bf25-48b6-ace2-3c59839e04ef-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "55df86f2-7153-46bd-acbd-6a80a29de86c-attachment.json", "type": "application/json"}], "start": 1775433124392, "stop": 1775433124392}, {"name": "Response → 200, trace_id: fde4ac7c2b404b61e4ed476e01f6504d", "status": "passed", "attachments": [{"name": "response.headers", "source": "aa5c2035-5f6e-49fe-9b3a-a73eb654e47a-attachment.json", "type": "application/json"}], "start": 1775433124393, "stop": 1775433124393}], "attachments": [{"name": "cURL", "source": "3e4d5257-1767-492b-82d8-c0a5d87e1eff-attachment.txt", "type": "text/plain"}], "start": 1775433124392, "stop": 1775433124393}, {"name": "PUT → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/update-pallet-weight?palletId=12575609&weight=5865", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "af9fe4af-63f0-49ae-948f-a93d88d773ba-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "3c0add34-1ae5-45f1-ab8a-d2e38dc0ce95-attachment.json", "type": "application/json"}], "start": 1775433124445, "stop": 1775433124445}, {"name": "Response → 200, trace_id: 0682609c5b71a080575370d2bfab20dc", "status": "passed", "attachments": [{"name": "response.headers", "source": "06aee5d2-cfae-4e77-ac52-7e97972b84e3-attachment.json", "type": "application/json"}], "start": 1775433124445, "stop": 1775433124445}], "attachments": [{"name": "cURL", "source": "155d887b-e108-40e9-b9e3-0684ba7d16fc-attachment.txt", "type": "text/plain"}], "start": 1775433124445, "stop": 1775433124445}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/move-process-to-inspection", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d003311f-b30e-4c3e-ad5b-b9ebb248e823-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a27012c4-82c1-45b0-8690-cb39dfa1d6d4-attachment.json", "type": "application/json"}], "start": 1775433124475, "stop": 1775433124476}, {"name": "Response → 200, trace_id: d154f03cc13ddb0162ca9c3b927c2c1e", "status": "passed", "attachments": [{"name": "response.headers", "source": "8dbbec02-dbd5-478b-8958-f5bfd0d5c2ef-attachment.json", "type": "application/json"}], "start": 1775433124476, "stop": 1775433124476}], "attachments": [{"name": "cURL", "source": "59226387-0276-4070-9a67-507a44564793-attachment.txt", "type": "text/plain"}], "start": 1775433124475, "stop": 1775433124476}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7d7df8a4-5d99-4a8f-b6df-c0dbf7dc89a5-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c7c0eb97-5cdb-4d04-9765-f72b11af8b38-attachment.json", "type": "application/json"}], "start": 1775433124559, "stop": 1775433124559}, {"name": "Response → 200, trace_id: 4bcde99ef54be71e2ba8632d59730285", "status": "passed", "attachments": [{"name": "response.headers", "source": "e6a3ecc4-c053-45ed-9cfd-18e55e7b5b0b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e5507cf7-7117-4873-bd6a-4b9df14c346e-attachment.json", "type": "application/json"}], "start": 1775433124560, "stop": 1775433124560}], "attachments": [{"name": "cURL", "source": "2d7c0ba4-022f-4ef3-90be-a8d44be747bd-attachment.txt", "type": "text/plain"}], "start": 1775433124559, "stop": 1775433124560}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "aca8eae9-fe60-4deb-bcaa-6b5310a09420-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "eb1b458f-f064-4358-8293-006cdac14144-attachment.json", "type": "application/json"}], "start": 1775433124584, "stop": 1775433124584}, {"name": "Response → 200, trace_id: cd69c2bed97af73f1282f529f7190d56", "status": "passed", "attachments": [{"name": "response.headers", "source": "26b3ce9a-b82c-48ce-aa1f-50222010d4dc-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "2ee11fce-ca99-458f-9406-20e92a2a5015-attachment.json", "type": "application/json"}], "start": 1775433124584, "stop": 1775433124584}], "attachments": [{"name": "cURL", "source": "d1f09b71-9215-4f5f-bb84-6b7ba7653431-attachment.txt", "type": "text/plain"}], "start": 1775433124584, "stop": 1775433124584}, {"name": "Waiter function: wait_pallet", "status": "passed", "start": 1775433124587, "stop": 1775433124589}], "start": 1775433121948, "stop": 1775433124589}, {"name": "invoice acceptance", "status": "passed", "steps": [{"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "a278955f-a21b-4e9e-88f8-90f43de7e1e5-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "8b6d6a21-1382-409b-bfd2-9bf47c7613f1-attachment.json", "type": "application/json"}], "start": 1775433124593, "stop": 1775433124593}], "start": 1775433124589, "stop": 1775433124594}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "64a4fe53-4019-46cb-a647-6edca052f31a-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "ee1e3db1-815e-4911-9b4f-06ea7a74e054-attachment.json", "type": "application/json"}], "start": 1775433124680, "stop": 1775433124680}, {"name": "Response → 200, trace_id: c970d76946cff6498601afa9a9901b00", "status": "passed", "attachments": [{"name": "response.headers", "source": "61616ee7-cf1f-42aa-bc7a-1b00c79a712f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7afa5f81-f10d-4783-9d9d-741895581c1c-attachment.json", "type": "application/json"}], "start": 1775433124680, "stop": 1775433124680}], "attachments": [{"name": "cURL", "source": "891eb907-c118-4134-b942-1e4bf45d08c9-attachment.txt", "type": "text/plain"}], "start": 1775433124680, "stop": 1775433124680}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e0b6fe3d-15ce-4f63-ad5c-fdb43d3eb1fc-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "c66573a5-c300-470b-9755-1b26c8c4b3a4-attachment.json", "type": "application/json"}], "start": 1775433124704, "stop": 1775433124704}, {"name": "Response → 200, trace_id: 4e6cadc12823da8921dd92f6d835e7a4", "status": "passed", "attachments": [{"name": "response.headers", "source": "b3677969-c686-4616-8416-998b3407eaaf-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "71a6d053-c60d-49cf-b4ec-7fdd84363aa3-attachment.json", "type": "application/json"}], "start": 1775433124704, "stop": 1775433124705}], "attachments": [{"name": "cURL", "source": "2572425f-5489-4dc8-a3ce-f901db79bece-attachment.txt", "type": "text/plain"}], "start": 1775433124704, "stop": 1775433124705}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-pallet-to-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "cf2ba5e8-9acd-4e6f-ba47-e6ecee17282d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e29a3e6e-b096-460b-9b88-02d1faf67ee8-attachment.json", "type": "application/json"}], "start": 1775433124808, "stop": 1775433124809}, {"name": "Response → 200, trace_id: e50dfa6463505b9a0dd26df323a9618e", "status": "passed", "attachments": [{"name": "response.headers", "source": "b9c2f0f2-07a7-4483-861c-aed6d0a8437f-attachment.json", "type": "application/json"}], "start": 1775433124809, "stop": 1775433124809}], "attachments": [{"name": "cURL", "source": "1531e4c8-301d-4c68-a7bd-703e3d809f06-attachment.txt", "type": "text/plain"}], "start": 1775433124808, "stop": 1775433124809}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "21dd0aa5-3354-43a8-a69b-f71efdaeb64f-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "07ee5807-2472-4d3b-8995-b92fe2f93141-attachment.json", "type": "application/json"}], "start": 1775433124817, "stop": 1775433124818}], "start": 1775433124813, "stop": 1775433124818}], "start": 1775433124589, "stop": 1775433124818}, {"name": "counting", "status": "passed", "steps": [{"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "83a73049-4e5e-44f0-b9f2-f7121130119c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "e453ab8e-6c85-4466-b409-01e853b71b6f-attachment.json", "type": "application/json"}], "start": 1775433124829, "stop": 1775433124829}], "start": 1775433124818, "stop": 1775433124830}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/search-invoices", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "1c977de6-e8f3-407b-aca5-3ccec5ef3c26-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "3222ecf0-13d6-4520-a9e8-062d7c7697e6-attachment.json", "type": "application/json"}], "start": 1775433124907, "stop": 1775433124907}, {"name": "Response → 200, trace_id: ad6091ffde38482767b6f2fcd51f0a8f", "status": "passed", "attachments": [{"name": "response.headers", "source": "a5b11928-b111-4183-9b7a-e56af1e80b5b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "c3d66b81-6053-4d96-91bc-37e29e45b9f0-attachment.json", "type": "application/json"}], "start": 1775433124907, "stop": 1775433124908}], "attachments": [{"name": "cURL", "source": "5c292155-2029-44ce-88a1-ca577daa7039-attachment.txt", "type": "text/plain"}], "start": 1775433124907, "stop": 1775433124908}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/invoices/get-pallets", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b3769ba2-3cd9-4a3d-8fc6-61f6181427d5-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "0d33bd7d-24ab-48d0-8489-3bbdd6ef8b3c-attachment.json", "type": "application/json"}], "start": 1775433124931, "stop": 1775433124931}, {"name": "Response → 200, trace_id: 125dcb7b0bd088368c0862fc1a136198", "status": "passed", "attachments": [{"name": "response.headers", "source": "89b688bb-1c18-4fa8-87b1-d9dd7457b56c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fee7318b-e141-4456-9247-610094009ff4-attachment.json", "type": "application/json"}], "start": 1775433124931, "stop": 1775433124931}], "attachments": [{"name": "cURL", "source": "1a6d0da6-adc0-4a5b-a206-d68802b51735-attachment.txt", "type": "text/plain"}], "start": 1775433124931, "stop": 1775433124931}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoice/7543312215/items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "60f31ca4-2702-4aea-94dd-7b95bca42e25-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "19f6c62a-2f79-4aac-86de-0d5a7388da3b-attachment.json", "type": "application/json"}], "start": 1775433124964, "stop": 1775433124964}, {"name": "Response → 200, trace_id: 0ad3e65bc025675933bb0104af7902b2", "status": "passed", "attachments": [{"name": "response.headers", "source": "765105d2-50e6-4e80-bb4c-45de121de65f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "893d3283-2cf4-43f4-8f5c-d2642035e8ac-attachment.json", "type": "application/json"}], "start": 1775433124964, "stop": 1775433124964}], "attachments": [{"name": "cURL", "source": "aefc5c10-01b2-42d5-b3ac-953214dce271-attachment.txt", "type": "text/plain"}], "start": 1775433124964, "stop": 1775433124964}, {"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": "a14de11e-42b6-4a0e-99f9-686c61c5b131-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8238d25d-cca0-410d-893b-81b47c90acc6-attachment.json", "type": "application/json"}], "start": 1775433124998, "stop": 1775433124999}, {"name": "Response → 200, trace_id: b364001bed38b1855be1ffca18cee7fd", "status": "passed", "attachments": [{"name": "response.headers", "source": "59e840c3-6554-483d-b345-6a808ca6ca7c-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a6fb5457-d0e4-44fe-82dd-7adcbc0bf3d9-attachment.txt", "type": "text/plain"}], "start": 1775433124999, "stop": 1775433124999}], "attachments": [{"name": "cURL", "source": "2beaefaa-d6c4-4e78-be4e-444280f12df9-attachment.txt", "type": "text/plain"}], "start": 1775433124998, "stop": 1775433124999}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-count-box-to-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "7d081616-e1ce-4e66-b2cb-8b1a7a490e42-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1dc929b9-76f3-43be-b79f-4aa918c95618-attachment.json", "type": "application/json"}], "start": 1775433125058, "stop": 1775433125058}, {"name": "Response → 200, trace_id: 1180cc25f3096166abb27f582bad640e", "status": "passed", "attachments": [{"name": "response.headers", "source": "d05a2b47-ac67-4e23-939e-b441e2bbc833-attachment.json", "type": "application/json"}], "start": 1775433125058, "stop": 1775433125058}], "attachments": [{"name": "cURL", "source": "761d8e61-dfd0-4553-b228-9a63260e6aed-attachment.txt", "type": "text/plain"}], "start": 1775433125058, "stop": 1775433125058}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2279bb6e-9d84-4a6c-8229-f63a1b2856e2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f9cd7aea-49bf-4158-b101-54f9c3f128bb-attachment.json", "type": "application/json"}], "start": 1775433125125, "stop": 1775433125125}, {"name": "Response → 200, trace_id: e7ebe6d424c4406eb6890edf8f3ec966", "status": "passed", "attachments": [{"name": "response.headers", "source": "5dda4102-6857-4d7c-8bae-43ea0e0f76af-attachment.json", "type": "application/json"}], "start": 1775433125125, "stop": 1775433125125}], "attachments": [{"name": "cURL", "source": "1e8ba3bb-72ce-4762-ab67-b3f1f90ca8ff-attachment.txt", "type": "text/plain"}], "start": 1775433125125, "stop": 1775433125125}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8dc60df8-4b6d-4012-a46c-f20b34b64d6f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "52b65d75-0cb8-43ba-8d6c-e366f4ba56ef-attachment.json", "type": "application/json"}], "start": 1775433125189, "stop": 1775433125189}, {"name": "Response → 200, trace_id: 9acdd9b92e00ac96a3a810225e8d9e20", "status": "passed", "attachments": [{"name": "response.headers", "source": "b17aa8c2-74de-43e0-95b6-e571f0dc0e4e-attachment.json", "type": "application/json"}], "start": 1775433125189, "stop": 1775433125189}], "attachments": [{"name": "cURL", "source": "f34ca238-afba-4944-9419-b14c2983fe34-attachment.txt", "type": "text/plain"}], "start": 1775433125189, "stop": 1775433125189}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a348d8a3-19b4-4a62-9760-f3bd2e839f22-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "45e7fc08-620b-4fa3-a690-21301b59a70f-attachment.json", "type": "application/json"}], "start": 1775433125251, "stop": 1775433125252}, {"name": "Response → 200, trace_id: 78f3a8ed15e3af7989ddf08879c54381", "status": "passed", "attachments": [{"name": "response.headers", "source": "d1bdc922-2aea-4737-b5bb-21d1461b2bb7-attachment.json", "type": "application/json"}], "start": 1775433125252, "stop": 1775433125252}], "attachments": [{"name": "cURL", "source": "31ccf5db-ae3b-42d5-99c0-095bb0445799-attachment.txt", "type": "text/plain"}], "start": 1775433125251, "stop": 1775433125252}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e76559cf-b6f4-4ba7-81b7-76e37c44103c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6c2af68d-28c9-4145-b3fd-e937c96b184d-attachment.json", "type": "application/json"}], "start": 1775433125318, "stop": 1775433125319}, {"name": "Response → 200, trace_id: 4566cf8751c5c7833b9a2911153347a6", "status": "passed", "attachments": [{"name": "response.headers", "source": "62045422-0bd0-4ba0-b2a6-ff1ba6f0436f-attachment.json", "type": "application/json"}], "start": 1775433125319, "stop": 1775433125319}], "attachments": [{"name": "cURL", "source": "04ef3fc6-bdbe-46b0-a984-a6d7568d13c2-attachment.txt", "type": "text/plain"}], "start": 1775433125318, "stop": 1775433125319}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8f7cfb72-c3da-464b-ba01-7eecd0a86228-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "90cbf3b4-e7de-45d2-bbd3-d971c78d9adb-attachment.json", "type": "application/json"}], "start": 1775433125386, "stop": 1775433125386}, {"name": "Response → 200, trace_id: 72b3ebec7fc491ca8173541f8312fc96", "status": "passed", "attachments": [{"name": "response.headers", "source": "a188bc06-4570-4036-99fd-c43ee88f9cfd-attachment.json", "type": "application/json"}], "start": 1775433125386, "stop": 1775433125386}], "attachments": [{"name": "cURL", "source": "64c19769-04ad-4236-9eb4-bcd532722f5f-attachment.txt", "type": "text/plain"}], "start": 1775433125386, "stop": 1775433125386}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "2470277b-bae8-45b6-bb1b-5effd8217b13-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "791a25f2-6bf8-42b2-9386-784b1a4b9eea-attachment.json", "type": "application/json"}], "start": 1775433125448, "stop": 1775433125448}, {"name": "Response → 200, trace_id: 591263cebb260e5d3d14470865e57d3e", "status": "passed", "attachments": [{"name": "response.headers", "source": "5687a79e-bae0-41d4-9230-a6872ac80b39-attachment.json", "type": "application/json"}], "start": 1775433125449, "stop": 1775433125449}], "attachments": [{"name": "cURL", "source": "4e329ab2-8b6d-4897-9826-da9537f992b9-attachment.txt", "type": "text/plain"}], "start": 1775433125448, "stop": 1775433125449}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ff389f6d-d258-4ef1-864b-8b3b575b6d6c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c1341e29-7793-4c7b-b5dd-a2f537431978-attachment.json", "type": "application/json"}], "start": 1775433125510, "stop": 1775433125510}, {"name": "Response → 200, trace_id: 43a63c68a430c1b6d11665775d153978", "status": "passed", "attachments": [{"name": "response.headers", "source": "8987523c-49d5-44bc-beb4-ed0596541f93-attachment.json", "type": "application/json"}], "start": 1775433125510, "stop": 1775433125510}], "attachments": [{"name": "cURL", "source": "ea15e00f-4395-4c5a-a45d-474ea6ef3f34-attachment.txt", "type": "text/plain"}], "start": 1775433125510, "stop": 1775433125510}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "14e15fb6-d670-4659-9223-b6f2e87a63d3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c79fb1c4-e838-47a2-911a-da714615ddfc-attachment.json", "type": "application/json"}], "start": 1775433125575, "stop": 1775433125575}, {"name": "Response → 200, trace_id: c1236210db6a918832f03a55da3ffbec", "status": "passed", "attachments": [{"name": "response.headers", "source": "5ff96a1d-8597-4fad-8b43-3f6f2890f227-attachment.json", "type": "application/json"}], "start": 1775433125575, "stop": 1775433125575}], "attachments": [{"name": "cURL", "source": "fd9c4a64-6f9b-46a3-97a5-5a99ed07a2db-attachment.txt", "type": "text/plain"}], "start": 1775433125574, "stop": 1775433125575}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8ea0d0aa-0610-4ea3-bf6e-276255e5ba9a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "46f32db9-65d2-4991-b9a9-724a96aff09a-attachment.json", "type": "application/json"}], "start": 1775433125641, "stop": 1775433125642}, {"name": "Response → 200, trace_id: 0b01d4aa69b9afc6167f09338d98336d", "status": "passed", "attachments": [{"name": "response.headers", "source": "01e75148-bd64-491b-9e57-5fd774536b39-attachment.json", "type": "application/json"}], "start": 1775433125642, "stop": 1775433125642}], "attachments": [{"name": "cURL", "source": "cd09a70a-088d-4493-897b-78fef970695d-attachment.txt", "type": "text/plain"}], "start": 1775433125641, "stop": 1775433125642}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "054fcd77-3d1c-4b83-aa3c-5b2b6c9105ef-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "be510c89-d0ce-4e90-a77b-8305bf5c255c-attachment.json", "type": "application/json"}], "start": 1775433125709, "stop": 1775433125710}, {"name": "Response → 200, trace_id: 374073f6a8453acc0f035cdc1b67e5a3", "status": "passed", "attachments": [{"name": "response.headers", "source": "c6e8eebf-1a53-49ac-955f-3b295b9726d6-attachment.json", "type": "application/json"}], "start": 1775433125710, "stop": 1775433125710}], "attachments": [{"name": "cURL", "source": "c2e2d94d-4765-4ead-9d92-33cc321b4a79-attachment.txt", "type": "text/plain"}], "start": 1775433125709, "stop": 1775433125710}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "c148c83e-9f4b-460d-abb0-c70db8b2ee26-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a7ff5f8b-702c-4506-ad05-9458549d8438-attachment.json", "type": "application/json"}], "start": 1775433125775, "stop": 1775433125775}, {"name": "Response → 200, trace_id: 13d39da2491eeb1f406d70674fc29d8c", "status": "passed", "attachments": [{"name": "response.headers", "source": "6ac11e39-3973-4978-b6fe-475f9b01fd04-attachment.json", "type": "application/json"}], "start": 1775433125775, "stop": 1775433125775}], "attachments": [{"name": "cURL", "source": "da7e4ce4-64a4-450c-a4cb-524b4b092ee8-attachment.txt", "type": "text/plain"}], "start": 1775433125775, "stop": 1775433125775}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6575b082-4433-4faf-b875-bc303d85913d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e1cc4ed5-2726-46b8-9c4b-21c921693255-attachment.json", "type": "application/json"}], "start": 1775433125841, "stop": 1775433125842}, {"name": "Response → 200, trace_id: 5d33405b245499bb4a663c75cc5d680b", "status": "passed", "attachments": [{"name": "response.headers", "source": "09af13b4-55e2-4c1c-9623-5c5645412c54-attachment.json", "type": "application/json"}], "start": 1775433125842, "stop": 1775433125842}], "attachments": [{"name": "cURL", "source": "25a5f1b0-0faa-42d4-89be-dcc4b1e2902f-attachment.txt", "type": "text/plain"}], "start": 1775433125841, "stop": 1775433125842}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "76071629-4ce5-40e0-8458-b294156a7c77-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8ac28690-b6c4-4788-af08-8885575a561e-attachment.json", "type": "application/json"}], "start": 1775433125907, "stop": 1775433125908}, {"name": "Response → 200, trace_id: 02eeb8d49d0e0b3b6c3c67fe62f70b1a", "status": "passed", "attachments": [{"name": "response.headers", "source": "75879b5a-cbd3-4668-b507-e80d0f6f691f-attachment.json", "type": "application/json"}], "start": 1775433125908, "stop": 1775433125909}], "attachments": [{"name": "cURL", "source": "5b113591-dc2d-464b-8a61-526e287e9f14-attachment.txt", "type": "text/plain"}], "start": 1775433125907, "stop": 1775433125909}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ce2a9853-243d-454d-97b9-29bca131e5be-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c02d2183-c173-49f3-89e7-d356d0e7ad67-attachment.json", "type": "application/json"}], "start": 1775433125976, "stop": 1775433125977}, {"name": "Response → 200, trace_id: 9c079aa2fed552adf501d5f111630da4", "status": "passed", "attachments": [{"name": "response.headers", "source": "39881000-3468-4390-84d0-462ad2ce168f-attachment.json", "type": "application/json"}], "start": 1775433125977, "stop": 1775433125977}], "attachments": [{"name": "cURL", "source": "5ea330ef-62ae-47ed-8be6-97a02f8bea45-attachment.txt", "type": "text/plain"}], "start": 1775433125976, "stop": 1775433125977}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-proper-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "42acb8cb-2597-4e12-824e-3707aadc025c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a2ae7914-398d-4e07-8786-1b8358d815d7-attachment.json", "type": "application/json"}], "start": 1775433126039, "stop": 1775433126040}, {"name": "Response → 200, trace_id: 67a9686cb1fa595ff00f55f0f7c75b93", "status": "passed", "attachments": [{"name": "response.headers", "source": "b995c629-57cf-4746-ad43-64de664c9ae0-attachment.json", "type": "application/json"}], "start": 1775433126040, "stop": 1775433126040}], "attachments": [{"name": "cURL", "source": "d10ba32a-e3e6-40ce-84fa-ba0d547d9726-attachment.txt", "type": "text/plain"}], "start": 1775433126039, "stop": 1775433126040}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/close-count-box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "09d0dc4a-5708-4fcf-9491-36f7cb7822ca-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "955a5b3c-98c7-4e05-b562-60cf74ab5475-attachment.json", "type": "application/json"}], "start": 1775433126070, "stop": 1775433126070}, {"name": "Response → 200, trace_id: 196b0e4e1f3b4c8095d43bfb56d636d6", "status": "passed", "attachments": [{"name": "response.headers", "source": "5f74f847-be10-4452-aaf6-3ea0cab17b00-attachment.json", "type": "application/json"}], "start": 1775433126070, "stop": 1775433126070}], "attachments": [{"name": "cURL", "source": "ee47bc7a-f212-41a4-8941-3d6a11f665df-attachment.txt", "type": "text/plain"}], "start": 1775433126070, "stop": 1775433126070}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/link-box-to-zone", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9057ba54-c561-4264-bfff-773a1b39970a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d099d5f3-5ace-4f58-aa7b-b5ce0bd2f7b1-attachment.json", "type": "application/json"}], "start": 1775433127183, "stop": 1775433127183}, {"name": "Response → 200, trace_id: ead2942a46bf362e2fe7060b2f62a6a0", "status": "passed", "attachments": [{"name": "response.headers", "source": "50d05dd1-450a-4fc2-aad7-c348910a4d53-attachment.json", "type": "application/json"}], "start": 1775433127184, "stop": 1775433127184}], "attachments": [{"name": "cURL", "source": "5631e75e-d3dd-46f2-a3fc-d5e0474af7b4-attachment.txt", "type": "text/plain"}], "start": 1775433127183, "stop": 1775433127184}, {"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": "08f65d33-8be0-414e-886a-dfd3bdacf427-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d40bf4c7-7b71-4016-90ee-678b56e05621-attachment.json", "type": "application/json"}], "start": 1775433127213, "stop": 1775433127214}, {"name": "Response → 200, trace_id: edb2257d604b3e5fce0cc91ce12a1784", "status": "passed", "attachments": [{"name": "response.headers", "source": "7d1a0864-7129-47a1-ac4e-44ec62c13af3-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "a5909c6a-f3b9-4eec-b9c4-96830e0b0137-attachment.txt", "type": "text/plain"}], "start": 1775433127214, "stop": 1775433127214}], "attachments": [{"name": "cURL", "source": "ecbee2ee-622f-4862-bc7e-2f78b9dbca91-attachment.txt", "type": "text/plain"}], "start": 1775433127213, "stop": 1775433127214}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-count-box-to-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4da8841e-5439-4e15-9c54-64b8cfc6d914-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "430463d9-c6bd-4871-8482-859f749aeebf-attachment.json", "type": "application/json"}], "start": 1775433127256, "stop": 1775433127256}, {"name": "Response → 200, trace_id: f5ddebddca9edb6cee19be20dfe7de52", "status": "passed", "attachments": [{"name": "response.headers", "source": "8468ebb4-5417-4782-9710-18450ca64395-attachment.json", "type": "application/json"}], "start": 1775433127256, "stop": 1775433127257}], "attachments": [{"name": "cURL", "source": "04391efa-d3a0-4544-b82d-0545464ecc4c-attachment.txt", "type": "text/plain"}], "start": 1775433127256, "stop": 1775433127257}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b682415c-7dd2-4809-ae04-0b6004c0eb9a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "15c66880-1f93-41fb-9de8-d43ba6fcc411-attachment.json", "type": "application/json"}], "start": 1775433127324, "stop": 1775433127324}, {"name": "Response → 200, trace_id: ec4964b7a2edc9257ae7630dad4bf4b6", "status": "passed", "attachments": [{"name": "response.headers", "source": "1ad738bc-f36f-4014-ba1b-eddb00090b40-attachment.json", "type": "application/json"}], "start": 1775433127324, "stop": 1775433127324}], "attachments": [{"name": "cURL", "source": "9ca185b4-3104-4501-bc8d-ee56c996c445-attachment.txt", "type": "text/plain"}], "start": 1775433127324, "stop": 1775433127324}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b42ff506-ca02-421f-a4bc-6f21de60c266-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e6c25d0b-0da5-442c-81b6-77460586b91d-attachment.json", "type": "application/json"}], "start": 1775433127387, "stop": 1775433127388}, {"name": "Response → 200, trace_id: f6604603f0cbc9e9117070d8504cd646", "status": "passed", "attachments": [{"name": "response.headers", "source": "1fca875d-7e00-4605-8b4c-8244eec674ca-attachment.json", "type": "application/json"}], "start": 1775433127388, "stop": 1775433127388}], "attachments": [{"name": "cURL", "source": "fee6aba1-ceba-481f-affd-cce6f0bdb8d9-attachment.txt", "type": "text/plain"}], "start": 1775433127387, "stop": 1775433127388}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "01867a73-44e6-4a57-abc8-e03e25079225-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "86810bee-47c7-4dfa-9b1a-2560bbd455f8-attachment.json", "type": "application/json"}], "start": 1775433127454, "stop": 1775433127455}, {"name": "Response → 200, trace_id: c7af99501f9dc21a804d91b9a0e34b64", "status": "passed", "attachments": [{"name": "response.headers", "source": "cc6fbc62-6b95-4f4d-be2b-98a5a8ddcfc9-attachment.json", "type": "application/json"}], "start": 1775433127455, "stop": 1775433127455}], "attachments": [{"name": "cURL", "source": "55b17bc4-dc6a-4977-a09c-3296f0fbf354-attachment.txt", "type": "text/plain"}], "start": 1775433127454, "stop": 1775433127455}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "194a2194-4685-4bca-8470-c131cf512b22-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "68e7f252-5eb3-42e6-8593-d7a4bf262a34-attachment.json", "type": "application/json"}], "start": 1775433127520, "stop": 1775433127520}, {"name": "Response → 200, trace_id: 7411201cbb48d106be7fa3ba5bceab75", "status": "passed", "attachments": [{"name": "response.headers", "source": "ef2c3639-8aa4-4ce3-9ea2-a8f4a41c92e6-attachment.json", "type": "application/json"}], "start": 1775433127520, "stop": 1775433127520}], "attachments": [{"name": "cURL", "source": "4f721218-fdb9-4320-adf9-f9face6f9b2a-attachment.txt", "type": "text/plain"}], "start": 1775433127520, "stop": 1775433127520}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "38a9cf3e-a6ce-4ba3-a5bf-d9e5da07729f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f8b6cbd1-0c4f-4b55-a663-dad3fcc0c2b4-attachment.json", "type": "application/json"}], "start": 1775433127584, "stop": 1775433127585}, {"name": "Response → 200, trace_id: 568fdd4199babf40aebcd72a84ed8192", "status": "passed", "attachments": [{"name": "response.headers", "source": "e342aac4-3e03-4b4d-9db6-5b592e2887ec-attachment.json", "type": "application/json"}], "start": 1775433127585, "stop": 1775433127585}], "attachments": [{"name": "cURL", "source": "c99d7257-0453-4f3e-8e11-20266bfe01b5-attachment.txt", "type": "text/plain"}], "start": 1775433127584, "stop": 1775433127585}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "095f10af-a638-4f17-924e-e7a28c5a098d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c483005d-0dc0-46eb-9677-f76d17cf6d9e-attachment.json", "type": "application/json"}], "start": 1775433127645, "stop": 1775433127646}, {"name": "Response → 200, trace_id: 27d47ec283010b727539466eb7d70060", "status": "passed", "attachments": [{"name": "response.headers", "source": "ce89e917-f960-490a-94ff-5a1238f4e394-attachment.json", "type": "application/json"}], "start": 1775433127646, "stop": 1775433127646}], "attachments": [{"name": "cURL", "source": "f3f9fea3-dda3-491a-97bd-dcf9c45e01b0-attachment.txt", "type": "text/plain"}], "start": 1775433127645, "stop": 1775433127646}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "93b47f92-d0f1-4299-8071-351ac756e4d7-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "917300f0-2853-40b6-9dcf-06f5ac3f788a-attachment.json", "type": "application/json"}], "start": 1775433127715, "stop": 1775433127715}, {"name": "Response → 200, trace_id: 2593b674d27a19eec5f4e25e5f72e2bc", "status": "passed", "attachments": [{"name": "response.headers", "source": "0053ae60-0cfb-4616-a5c8-6c562a8a5626-attachment.json", "type": "application/json"}], "start": 1775433127715, "stop": 1775433127716}], "attachments": [{"name": "cURL", "source": "3fb344a3-c55c-461c-a256-7fdd9c5e783b-attachment.txt", "type": "text/plain"}], "start": 1775433127715, "stop": 1775433127716}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "894dd6ad-e4c9-4dd7-9687-5862a5c2748a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "421a9b44-4fa5-4585-934c-864be6a3a51d-attachment.json", "type": "application/json"}], "start": 1775433127780, "stop": 1775433127780}, {"name": "Response → 200, trace_id: a37d875adad412f16828bd25fd78c0d5", "status": "passed", "attachments": [{"name": "response.headers", "source": "2490d6d4-9ce0-4a0f-8965-58ac21cda721-attachment.json", "type": "application/json"}], "start": 1775433127780, "stop": 1775433127780}], "attachments": [{"name": "cURL", "source": "6cdc5ad0-eb90-443c-9381-384db06bfb08-attachment.txt", "type": "text/plain"}], "start": 1775433127780, "stop": 1775433127780}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "751c8702-5b70-483d-8cb5-5dc6a30f1326-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "09035851-eec5-457f-962f-cb37c5f41c91-attachment.json", "type": "application/json"}], "start": 1775433127844, "stop": 1775433127845}, {"name": "Response → 200, trace_id: 035b9778c9bb0f0ad392d720bd6666ec", "status": "passed", "attachments": [{"name": "response.headers", "source": "8714ffce-492e-4383-b439-8c628cdde0d2-attachment.json", "type": "application/json"}], "start": 1775433127845, "stop": 1775433127845}], "attachments": [{"name": "cURL", "source": "7a0030e8-1162-4a7d-9e4d-753bed3ed78e-attachment.txt", "type": "text/plain"}], "start": 1775433127844, "stop": 1775433127845}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a22bf613-03ca-45c5-947c-ad47417e44c8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1c8175ee-d44f-47c7-9fd3-565e73d9daaf-attachment.json", "type": "application/json"}], "start": 1775433127908, "stop": 1775433127908}, {"name": "Response → 200, trace_id: e3cd731cabdec746e2a3b103c51e8bba", "status": "passed", "attachments": [{"name": "response.headers", "source": "3ed3805d-00af-42f1-b08b-0e2f098285ce-attachment.json", "type": "application/json"}], "start": 1775433127908, "stop": 1775433127908}], "attachments": [{"name": "cURL", "source": "629cb20c-ed9b-40a4-aa22-ae70e13b9e14-attachment.txt", "type": "text/plain"}], "start": 1775433127908, "stop": 1775433127908}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d05c2431-940f-42ff-b79c-148bf50f7130-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "94466e75-4279-44d8-9330-cb708190cec4-attachment.json", "type": "application/json"}], "start": 1775433127975, "stop": 1775433127975}, {"name": "Response → 200, trace_id: 86ff8fc0b3922170dd1cfc652d8590fe", "status": "passed", "attachments": [{"name": "response.headers", "source": "097f16ec-4e6b-4337-8d01-19549364c1ea-attachment.json", "type": "application/json"}], "start": 1775433127975, "stop": 1775433127975}], "attachments": [{"name": "cURL", "source": "9fa9ee34-afd6-424a-844e-fa1bbb754708-attachment.txt", "type": "text/plain"}], "start": 1775433127975, "stop": 1775433127976}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-defective-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "e43b6add-0352-4244-9ccc-295c8d4e6d7d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4c5ec793-bad0-433c-8320-9148f515508e-attachment.json", "type": "application/json"}], "start": 1775433128038, "stop": 1775433128039}, {"name": "Response → 200, trace_id: d6c78f74f6d00ae2bdcec2d00943806c", "status": "passed", "attachments": [{"name": "response.headers", "source": "bd7b1c11-a570-46c6-9028-0ef7e1bb6a97-attachment.json", "type": "application/json"}], "start": 1775433128039, "stop": 1775433128039}], "attachments": [{"name": "cURL", "source": "5dc15728-5a21-47a9-92a1-743c2c00f772-attachment.txt", "type": "text/plain"}], "start": 1775433128038, "stop": 1775433128039}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/close-count-box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "dab9e228-e7be-4f1c-8dfb-4d31f372a1d7-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "864308d9-984a-492b-b1a3-dd482fa6d7a1-attachment.json", "type": "application/json"}], "start": 1775433128069, "stop": 1775433128069}, {"name": "Response → 200, trace_id: 49f5b392ce990d47a23a71be344e93a3", "status": "passed", "attachments": [{"name": "response.headers", "source": "fa47a267-5b78-4856-a1df-e9d035778c47-attachment.json", "type": "application/json"}], "start": 1775433128069, "stop": 1775433128069}], "attachments": [{"name": "cURL", "source": "919c4691-d9cb-4af7-8331-337afb6f0b1b-attachment.txt", "type": "text/plain"}], "start": 1775433128069, "stop": 1775433128069}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/link-box-to-zone", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "fd2344a5-d822-49e1-9304-78382ec31073-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c1e14952-108b-4fe9-b13f-88614812e199-attachment.json", "type": "application/json"}], "start": 1775433128850, "stop": 1775433128850}, {"name": "Response → 200, trace_id: ad4abc621a2d18a736e7de4ce07e4940", "status": "passed", "attachments": [{"name": "response.headers", "source": "a647a179-0843-4ba3-957a-465fc47818ba-attachment.json", "type": "application/json"}], "start": 1775433128850, "stop": 1775433128850}], "attachments": [{"name": "cURL", "source": "fcb321b5-bea9-45dd-8782-645975e98413-attachment.txt", "type": "text/plain"}], "start": 1775433128850, "stop": 1775433128850}, {"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": "d9fe23db-e24c-4302-9691-fc6ae6baae0c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "732a578d-2f58-486c-ab49-1db1f5d02ab5-attachment.json", "type": "application/json"}], "start": 1775433128881, "stop": 1775433128882}, {"name": "Response → 200, trace_id: 8861490e5b68c8b7a4bd424c35efc8fc", "status": "passed", "attachments": [{"name": "response.headers", "source": "09897da8-e49b-44d3-a292-252c96177b50-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "08df4254-5a93-4412-845e-c682e43f9219-attachment.txt", "type": "text/plain"}], "start": 1775433128882, "stop": 1775433128882}], "attachments": [{"name": "cURL", "source": "45fbb399-714b-49bf-8fb9-ad23ec11bc36-attachment.txt", "type": "text/plain"}], "start": 1775433128881, "stop": 1775433128882}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-count-box-to-table", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "90b3e659-97eb-4cfa-ae74-2bcf6a2b2dc9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5412420f-6610-4d89-a8eb-8246fe9e44ad-attachment.json", "type": "application/json"}], "start": 1775433128926, "stop": 1775433128927}, {"name": "Response → 200, trace_id: 08f6ad69c08ef10ec50eafe1b83f19c1", "status": "passed", "attachments": [{"name": "response.headers", "source": "84c0eed6-4e27-4355-86f7-4df1f0cbe470-attachment.json", "type": "application/json"}], "start": 1775433128927, "stop": 1775433128927}], "attachments": [{"name": "cURL", "source": "9538ed6d-3bb5-491b-966b-2783015cf446-attachment.txt", "type": "text/plain"}], "start": 1775433128926, "stop": 1775433128927}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ef1672b5-6fbe-4c16-91b1-1d2a198c4e46-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bc4589c5-9973-4789-8488-f8a954faa9e9-attachment.json", "type": "application/json"}], "start": 1775433128992, "stop": 1775433128993}, {"name": "Response → 200, trace_id: f04442ec9676c3a61a462604d5131a56", "status": "passed", "attachments": [{"name": "response.headers", "source": "a263544b-d3b5-4b47-a2dd-236cc79da0b6-attachment.json", "type": "application/json"}], "start": 1775433128993, "stop": 1775433128993}], "attachments": [{"name": "cURL", "source": "35415ba6-9e3d-432e-8cfd-f753bee848b8-attachment.txt", "type": "text/plain"}], "start": 1775433128992, "stop": 1775433128993}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "701a1551-91cc-4b8e-aa1b-a61f0f9d59e3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9fdda0c2-e0ce-41f4-8e66-d81427f82eda-attachment.json", "type": "application/json"}], "start": 1775433129048, "stop": 1775433129048}, {"name": "Response → 200, trace_id: 3716c83d1766535364c20d1995c92415", "status": "passed", "attachments": [{"name": "response.headers", "source": "b73d572e-10cb-4ebb-9efa-f28005bd49e7-attachment.json", "type": "application/json"}], "start": 1775433129048, "stop": 1775433129048}], "attachments": [{"name": "cURL", "source": "d0b52971-0257-4854-b69c-b6b2dc9c1419-attachment.txt", "type": "text/plain"}], "start": 1775433129048, "stop": 1775433129048}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "cdb5f08e-5c95-4bcc-82d8-dd739b64b2fd-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "4b0ed8a8-d0a5-4659-8716-5896ae0599c4-attachment.json", "type": "application/json"}], "start": 1775433129106, "stop": 1775433129107}, {"name": "Response → 200, trace_id: 445b60e866fd9a5446b60b9730aa0e53", "status": "passed", "attachments": [{"name": "response.headers", "source": "d4612b83-6720-4f77-9409-525bc2c83940-attachment.json", "type": "application/json"}], "start": 1775433129107, "stop": 1775433129107}], "attachments": [{"name": "cURL", "source": "459ca31b-12d0-4572-95e4-2bd9f38c4bcd-attachment.txt", "type": "text/plain"}], "start": 1775433129106, "stop": 1775433129107}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6295e24e-f303-4bb1-bf61-2fafbbdb1654-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "953bc85b-e42a-4f86-b1ca-a8e6f08c6da9-attachment.json", "type": "application/json"}], "start": 1775433129165, "stop": 1775433129166}, {"name": "Response → 200, trace_id: cc0f66c42d48c048f3bea29921b3b5ee", "status": "passed", "attachments": [{"name": "response.headers", "source": "4b88b057-a27e-445a-96ab-765cdc891f37-attachment.json", "type": "application/json"}], "start": 1775433129166, "stop": 1775433129166}], "attachments": [{"name": "cURL", "source": "e9167916-9c19-4150-8afe-d1dff6938656-attachment.txt", "type": "text/plain"}], "start": 1775433129165, "stop": 1775433129166}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a9c70bc6-ae46-4809-a85c-84abd98b47d2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6f8a518a-003a-4a28-98cf-14a4081b204c-attachment.json", "type": "application/json"}], "start": 1775433129221, "stop": 1775433129221}, {"name": "Response → 200, trace_id: 4c6e2a5ec496df1a9b3a0e754b0f7409", "status": "passed", "attachments": [{"name": "response.headers", "source": "0292e75b-8462-485e-af46-fcb472de3dfe-attachment.json", "type": "application/json"}], "start": 1775433129221, "stop": 1775433129221}], "attachments": [{"name": "cURL", "source": "357c8c3a-790e-414e-8d50-82ea8fd777ba-attachment.txt", "type": "text/plain"}], "start": 1775433129221, "stop": 1775433129222}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5e11aea9-05fe-43f7-bfea-439b9b625091-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6f58f1bf-f0ee-4c62-8b6e-22fd9fd992a9-attachment.json", "type": "application/json"}], "start": 1775433129285, "stop": 1775433129285}, {"name": "Response → 200, trace_id: 40475944d447544f039b77e181bce598", "status": "passed", "attachments": [{"name": "response.headers", "source": "70d39c0d-369f-42a7-adb0-c739f7cf1c01-attachment.json", "type": "application/json"}], "start": 1775433129285, "stop": 1775433129285}], "attachments": [{"name": "cURL", "source": "b032279f-3218-4f2b-bae4-9cf1ab1aa72f-attachment.txt", "type": "text/plain"}], "start": 1775433129285, "stop": 1775433129285}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "b1697c68-772d-46d3-8e45-9c4704c2aeea-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5b9e5734-d429-475a-86ed-260195217f58-attachment.json", "type": "application/json"}], "start": 1775433129344, "stop": 1775433129344}, {"name": "Response → 200, trace_id: 7c0ffe07b1f25294248e20e9d36ac88f", "status": "passed", "attachments": [{"name": "response.headers", "source": "671c6326-7cf5-47b0-a8db-e42f317f5256-attachment.json", "type": "application/json"}], "start": 1775433129344, "stop": 1775433129344}], "attachments": [{"name": "cURL", "source": "4b96cd89-7e99-45f2-b65c-926963951299-attachment.txt", "type": "text/plain"}], "start": 1775433129344, "stop": 1775433129344}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "95aac99a-cb05-4367-a0d9-316ae4122360-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "abc425bf-7ba8-45d8-a804-b98993717185-attachment.json", "type": "application/json"}], "start": 1775433129405, "stop": 1775433129405}, {"name": "Response → 200, trace_id: b3a2e6fef0a083f530f3bce842fcadc5", "status": "passed", "attachments": [{"name": "response.headers", "source": "5258a4ab-2725-4d11-809f-3f4a5dee4ec5-attachment.json", "type": "application/json"}], "start": 1775433129405, "stop": 1775433129405}], "attachments": [{"name": "cURL", "source": "f96eb24e-e360-4e11-ac10-deb6a074d1f7-attachment.txt", "type": "text/plain"}], "start": 1775433129405, "stop": 1775433129406}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "699270f2-c517-4f79-9d31-7ff8899f43da-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "032dc7a9-77ab-40a1-93bb-65d660f9053c-attachment.json", "type": "application/json"}], "start": 1775433129468, "stop": 1775433129468}, {"name": "Response → 200, trace_id: 2d0566537d5de7d1feeb90af6bbf9ae2", "status": "passed", "attachments": [{"name": "response.headers", "source": "61e3e67b-e661-4194-b610-2c4cf138a757-attachment.json", "type": "application/json"}], "start": 1775433129468, "stop": 1775433129468}], "attachments": [{"name": "cURL", "source": "b61b6bd7-1686-46b5-90e0-c76326bf2222-attachment.txt", "type": "text/plain"}], "start": 1775433129468, "stop": 1775433129468}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "39c7001e-1b1f-4fd4-834a-96531e8487fc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "99d43d13-e4c9-48a2-988a-5939b71f951f-attachment.json", "type": "application/json"}], "start": 1775433129525, "stop": 1775433129525}, {"name": "Response → 200, trace_id: a1e9a2421e860039a61b507a35dc8997", "status": "passed", "attachments": [{"name": "response.headers", "source": "0dfc8d1d-39cc-4e67-b05d-7c16ecf7b9d0-attachment.json", "type": "application/json"}], "start": 1775433129525, "stop": 1775433129525}], "attachments": [{"name": "cURL", "source": "221fa72d-a9c7-4452-ad0a-2ab269001b53-attachment.txt", "type": "text/plain"}], "start": 1775433129525, "stop": 1775433129525}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "231b05e4-eaa9-4d5b-9a64-abb8a76dc89d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e57b83c5-9333-4172-804c-034a26762f49-attachment.json", "type": "application/json"}], "start": 1775433129586, "stop": 1775433129587}, {"name": "Response → 200, trace_id: 794b07b38992df65a5c31c0399ec2bce", "status": "passed", "attachments": [{"name": "response.headers", "source": "e813fef8-2ea8-487e-8118-f153bcb9d90e-attachment.json", "type": "application/json"}], "start": 1775433129587, "stop": 1775433129587}], "attachments": [{"name": "cURL", "source": "11f49569-1858-4a64-b910-34a80c5f18e0-attachment.txt", "type": "text/plain"}], "start": 1775433129586, "stop": 1775433129587}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "f0f7f943-bee0-4f5f-9e75-75942611e83c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "363ec6d5-8459-4c85-b7ed-7e9bf3e0bae3-attachment.json", "type": "application/json"}], "start": 1775433129646, "stop": 1775433129646}, {"name": "Response → 200, trace_id: ce742bbfce38541e2c3bb03d45cdb8a7", "status": "passed", "attachments": [{"name": "response.headers", "source": "4181a69f-2588-4d61-80dc-647d1eeeb4b8-attachment.json", "type": "application/json"}], "start": 1775433129646, "stop": 1775433129646}], "attachments": [{"name": "cURL", "source": "19954209-8847-4826-bebe-000ce3c6b4c6-attachment.txt", "type": "text/plain"}], "start": 1775433129646, "stop": 1775433129646}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "d136811a-f2a8-4fc8-8322-a820f3470d9f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "97182b7b-4340-428c-91e7-ef0fa64b41fd-attachment.json", "type": "application/json"}], "start": 1775433129707, "stop": 1775433129708}, {"name": "Response → 200, trace_id: 16e81fe69d8a5886048e72f289203d05", "status": "passed", "attachments": [{"name": "response.headers", "source": "cf0dfd2e-76df-4992-8eed-422407345b2e-attachment.json", "type": "application/json"}], "start": 1775433129708, "stop": 1775433129708}], "attachments": [{"name": "cURL", "source": "a661f924-162b-40b9-84f3-9a1c2ca2c358-attachment.txt", "type": "text/plain"}], "start": 1775433129707, "stop": 1775433129708}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "783f948c-22a2-4c78-baa2-192592f26400-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cec21be3-5080-4441-81bf-1f078a862bbc-attachment.json", "type": "application/json"}], "start": 1775433129766, "stop": 1775433129766}, {"name": "Response → 200, trace_id: 2a3b0706174a468f0b74ae70dc516c96", "status": "passed", "attachments": [{"name": "response.headers", "source": "79705fd6-5fc5-444f-aee6-e33ebc03b165-attachment.json", "type": "application/json"}], "start": 1775433129766, "stop": 1775433129766}], "attachments": [{"name": "cURL", "source": "e600d959-ff58-48d2-beb2-559379d62f0b-attachment.txt", "type": "text/plain"}], "start": 1775433129766, "stop": 1775433129766}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9793bd9f-06f1-4293-be84-806444763dbc-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fda37166-8ecb-4274-9133-6580b2358820-attachment.json", "type": "application/json"}], "start": 1775433129823, "stop": 1775433129824}, {"name": "Response → 200, trace_id: db20f39998cbc499ce7c3041cfa59620", "status": "passed", "attachments": [{"name": "response.headers", "source": "f1c162c9-e669-4ef4-afed-40aec2467c8c-attachment.json", "type": "application/json"}], "start": 1775433129824, "stop": 1775433129824}], "attachments": [{"name": "cURL", "source": "afcc80bd-7f44-4281-97bd-4ee1d3249786-attachment.txt", "type": "text/plain"}], "start": 1775433129823, "stop": 1775433129824}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a82c09ee-aa89-4091-9914-a3195a7abf86-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "dd71c210-b73f-4502-aad1-6c02c6e6ede2-attachment.json", "type": "application/json"}], "start": 1775433129884, "stop": 1775433129884}, {"name": "Response → 200, trace_id: 409914f823c94f23d6e038769ec3924e", "status": "passed", "attachments": [{"name": "response.headers", "source": "b772180c-215a-4fda-9951-963786617173-attachment.json", "type": "application/json"}], "start": 1775433129884, "stop": 1775433129885}], "attachments": [{"name": "cURL", "source": "80dcbceb-41ed-4b88-96ce-5f88e4cd04b2-attachment.txt", "type": "text/plain"}], "start": 1775433129884, "stop": 1775433129885}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "6008e0f9-2e42-4637-b425-d99bf9226b79-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "55c0f684-030b-4db1-88c4-9fc31de1888f-attachment.json", "type": "application/json"}], "start": 1775433129944, "stop": 1775433129944}, {"name": "Response → 200, trace_id: 86cf6078eae59f289a6e53dec1b4877f", "status": "passed", "attachments": [{"name": "response.headers", "source": "3ea357fc-c621-4fdb-a03f-e8625a6e70ac-attachment.json", "type": "application/json"}], "start": 1775433129944, "stop": 1775433129944}], "attachments": [{"name": "cURL", "source": "b00ff10b-a04f-44f6-866d-6bd1f87c1478-attachment.txt", "type": "text/plain"}], "start": 1775433129944, "stop": 1775433129944}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4e62393c-fa2a-4e12-82f5-9b557140cc98-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b6ce3923-ceeb-4fac-8e62-9cabbe934cd6-attachment.json", "type": "application/json"}], "start": 1775433130002, "stop": 1775433130002}, {"name": "Response → 200, trace_id: 17f7428fa9b867b8d214f96dab367e55", "status": "passed", "attachments": [{"name": "response.headers", "source": "d9e1e1f3-83df-4f5b-9855-397ef6782d27-attachment.json", "type": "application/json"}], "start": 1775433130002, "stop": 1775433130002}], "attachments": [{"name": "cURL", "source": "8ec7453f-0b9b-438d-a7db-7d0cd051b921-attachment.txt", "type": "text/plain"}], "start": 1775433130002, "stop": 1775433130003}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3fe3b682-af43-4b39-8e28-a1edb08c4dc9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9c587767-74ce-4365-bfdc-5ff56d4f3c03-attachment.json", "type": "application/json"}], "start": 1775433130065, "stop": 1775433130066}, {"name": "Response → 200, trace_id: a8f30dad76cd59799eb9c67fd7ac7589", "status": "passed", "attachments": [{"name": "response.headers", "source": "24fcd844-13a6-4cf4-8aea-3cd107abae39-attachment.json", "type": "application/json"}], "start": 1775433130066, "stop": 1775433130066}], "attachments": [{"name": "cURL", "source": "fe57a0d8-75da-4e9a-8ef6-bbf13fa03768-attachment.txt", "type": "text/plain"}], "start": 1775433130065, "stop": 1775433130066}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/add-unknown-item", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a925cf9d-6f3c-48e3-b3be-52dd8f218007-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fb0c5d31-406d-47b5-a676-310b5e188867-attachment.json", "type": "application/json"}], "start": 1775433130125, "stop": 1775433130126}, {"name": "Response → 200, trace_id: b227e878f46e596529d26402ea563cd7", "status": "passed", "attachments": [{"name": "response.headers", "source": "71ca3120-0d60-4372-8f15-3e369ff27002-attachment.json", "type": "application/json"}], "start": 1775433130126, "stop": 1775433130126}], "attachments": [{"name": "cURL", "source": "36c2fb5f-7a4a-45b0-8881-24eb87a8089d-attachment.txt", "type": "text/plain"}], "start": 1775433130125, "stop": 1775433130126}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/close-count-box", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "14ff4e3f-5a17-4134-b27c-6932d5cd441b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5de07948-bbac-480d-bde1-dccb904ee93d-attachment.json", "type": "application/json"}], "start": 1775433130157, "stop": 1775433130157}, {"name": "Response → 200, trace_id: d9edfa0b5224627da2f6f0dbf86d65ee", "status": "passed", "attachments": [{"name": "response.headers", "source": "5aba9c2e-ea8a-4a0b-bc14-f41513fe5988-attachment.json", "type": "application/json"}], "start": 1775433130157, "stop": 1775433130157}], "attachments": [{"name": "cURL", "source": "bb0393c1-39af-4aa7-ba0f-2b997596747c-attachment.txt", "type": "text/plain"}], "start": 1775433130157, "stop": 1775433130157}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/link-box-to-zone", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ceb5d932-0b5d-4349-b8a9-9f5ee95396be-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "93296060-2ea0-4512-a0e7-df396d82a363-attachment.json", "type": "application/json"}], "start": 1775433130970, "stop": 1775433130971}, {"name": "Response → 200, trace_id: 22fed7eb629017a3cd5a3339dea282bb", "status": "passed", "attachments": [{"name": "response.headers", "source": "ae4a240a-be83-4389-9210-9c5fa5d16215-attachment.json", "type": "application/json"}], "start": 1775433130971, "stop": 1775433130971}], "attachments": [{"name": "cURL", "source": "a958caa8-55f3-49f8-b205-72e335caa06e-attachment.txt", "type": "text/plain"}], "start": 1775433130970, "stop": 1775433130971}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/flow/close-pallet-count", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "66baa8c3-0295-4616-8dc7-b82b8dee7e46-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e39db53c-cb7a-4e44-92a9-ae59b9dc664e-attachment.json", "type": "application/json"}], "start": 1775433131051, "stop": 1775433131052}, {"name": "Response → 200, trace_id: a9465550e93f6e791f65b707f98f3891", "status": "passed", "attachments": [{"name": "response.headers", "source": "142c0f18-9a1f-4280-a435-82daa1ad393c-attachment.json", "type": "application/json"}], "start": 1775433131052, "stop": 1775433131052}], "attachments": [{"name": "cURL", "source": "9c991f6b-eb88-46d7-8b79-cc5947f6c681-attachment.txt", "type": "text/plain"}], "start": 1775433131051, "stop": 1775433131052}, {"name": "Waiter function: wait_cell_status", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "e41e6e15-0dc2-4979-b15e-5aec1aaeee10-attachment.txt", "type": "text/plain"}], "start": 1775433131059, "stop": 1775433131060}], "start": 1775433131055, "stop": 1775433131060}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "235af15c-3609-45a6-a193-d9b75ccbe1a3-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "6d877c03-7e50-4623-9b4e-4871b5689930-attachment.json", "type": "application/json"}], "start": 1775433131073, "stop": 1775433131073}], "start": 1775433131060, "stop": 1775433131073}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoice/7543312215/items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "a8441345-126b-4b6d-9629-2cbe1885c86f-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "5eba3289-4a93-4832-9f56-104dd3941d7f-attachment.json", "type": "application/json"}], "start": 1775433131108, "stop": 1775433131108}, {"name": "Response → 200, trace_id: f49773f38c79b2e47a4f882dff8b8b0f", "status": "passed", "attachments": [{"name": "response.headers", "source": "b52c72d2-99ff-4aa7-bcc5-0167da3aa8c0-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ccf28eab-e514-4749-8634-d98c6856a577-attachment.json", "type": "application/json"}], "start": 1775433131108, "stop": 1775433131109}], "attachments": [{"name": "cURL", "source": "39c8a72b-6344-4c0c-9521-9fff7a729e60-attachment.txt", "type": "text/plain"}], "start": 1775433131108, "stop": 1775433131109}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/box/get-active-for-invoice", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "4a6d3b5f-4c15-4afd-9b25-46ef02c563be-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "9a82c0c0-0ef8-4b7d-b466-3df0adbae490-attachment.json", "type": "application/json"}], "start": 1775433131131, "stop": 1775433131131}, {"name": "Response → 200, trace_id: 0225b91e96b7cd0da9581d73eb9430b2", "status": "passed", "attachments": [{"name": "response.headers", "source": "94cc268a-1371-445c-ae0d-e7e57e42b672-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "95844f1b-d011-467e-a7d9-660a4d627bdb-attachment.json", "type": "application/json"}], "start": 1775433131131, "stop": 1775433131131}], "attachments": [{"name": "cURL", "source": "856c39f1-c308-4562-87bc-377a639d8746-attachment.txt", "type": "text/plain"}], "start": 1775433131131, "stop": 1775433131131}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/box/get-box-items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "8535e383-7831-48ec-b6b1-e37ba803eb56-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "b3467bce-dff4-411c-bc07-e7112b2d8046-attachment.json", "type": "application/json"}], "start": 1775433131158, "stop": 1775433131159}, {"name": "Response → 200, trace_id: 865be3d8391f497fd38899e4850cacb5", "status": "passed", "attachments": [{"name": "response.headers", "source": "c56f317c-602d-46f5-950f-d67e0f2c14f7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "63719a21-6656-4e89-88f3-fdab0c2840ac-attachment.json", "type": "application/json"}], "start": 1775433131159, "stop": 1775433131159}], "attachments": [{"name": "cURL", "source": "3102ae8a-e9fb-47cc-932f-bc7d99d37877-attachment.txt", "type": "text/plain"}], "start": 1775433131158, "stop": 1775433131159}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/box/get-box-items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "77f4f022-d59d-4867-86d1-0d0bf58643ed-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "2a899099-7e4e-4a4e-ae0e-da5e343270ec-attachment.json", "type": "application/json"}], "start": 1775433131190, "stop": 1775433131190}, {"name": "Response → 200, trace_id: 13be13c6300dee31079a561d54279d31", "status": "passed", "attachments": [{"name": "response.headers", "source": "b3761003-06bc-4b7c-9c5e-6c04ac291b04-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e1ab8d9b-4683-4b37-9cd1-e30a236f7cb5-attachment.json", "type": "application/json"}], "start": 1775433131190, "stop": 1775433131191}], "attachments": [{"name": "cURL", "source": "71d904f5-6c71-4b8d-a02f-88fb0e08835c-attachment.txt", "type": "text/plain"}], "start": 1775433131190, "stop": 1775433131191}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/box/get-box-items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "103af8f8-a6a6-4d2b-9800-589036160b01-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "44119a58-3ee9-47fd-9fc3-5cd94d9fcd65-attachment.json", "type": "application/json"}], "start": 1775433131219, "stop": 1775433131220}, {"name": "Response → 200, trace_id: ca09bc28f9dfcff6bfae00c849227b7d", "status": "passed", "attachments": [{"name": "response.headers", "source": "bd0cfceb-98a8-4e14-9e40-89fa5ace5c6f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "1db37f98-2629-41d8-8937-01542d63ca54-attachment.json", "type": "application/json"}], "start": 1775433131220, "stop": 1775433131220}], "attachments": [{"name": "cURL", "source": "0fe56569-2fc5-42f2-afe7-ae94882c26b6-attachment.txt", "type": "text/plain"}], "start": 1775433131219, "stop": 1775433131220}], "start": 1775433124818, "stop": 1775433131222}, {"name": "declaration request", "status": "broken", "statusDetails": {"message": "sqlalchemy.exc.TimeoutError: QueuePool limit of size 1 overflow 10 reached, connection timed out, timeout 30.00 (Background on this error at: https://sqlalche.me/e/20/3o7r)\n", "trace": "  File \"/app/src/framework/wms/builders/acceptance/invoice/invoice.py\", line 791, in full_acceptance\n    (self.state_awaiting_doc().state_invoice_doc_waiting().state_invoice_doc_requested())\n     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/app/src/framework/wms/builders/acceptance/invoice/invoice.py\", line 613, in state_invoice_doc_waiting\n    wait_invoice(self.invoice_id, status=wait_state)\n  File \"/app/src/framework/common/utils/utils.py\", line 218, in wrapped_f\n    return Retrying(\n           ^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 279, in call\n    return attempt.get(self._wrap_exception)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 326, in get\n    raise exc.with_traceback(tb)\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 273, in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n  File \"/app/src/framework/wms/validation/waiters/acceptance.py\", line 37, in wait_invoice\n    invoice: Invoice = AcceptanceQueries().tx_query(Invoice).filter(Invoice.id == supply_id).first()\n                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/dm_qa_common_libs_db_client/logged_query.py\", line 62, in first\n    result = super().first()\n             ^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/query.py\", line 2759, in first\n    return self.limit(1)._iter().first()  # type: ignore\n           ^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/query.py\", line 2857, in _iter\n    result: Union[ScalarResult[_T], Result[_T]] = self.session.execute(\n                                                  ^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py\", line 2351, in execute\n    return self._execute_internal(\n           ^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py\", line 2239, in _execute_internal\n    conn = self._connection_for_bind(bind)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py\", line 2108, in _connection_for_bind\n    return trans._connection_for_bind(engine, execution_options)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"<string>\", line 2, in _connection_for_bind\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/state_changes.py\", line 137, in _go\n    ret_value = fn(self, *arg, **kw)\n                ^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py\", line 1187, in _connection_for_bind\n    conn = bind.connect()\n           ^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py\", line 3293, in connect\n    return self._connection_cls(self)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py\", line 143, in __init__\n    self._dbapi_connection = engine.raw_connection()\n                             ^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py\", line 3317, in raw_connection\n    return self.pool.connect()\n           ^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/base.py\", line 448, in connect\n    return _ConnectionFairy._checkout(self)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/base.py\", line 1272, in _checkout\n    fairy = _ConnectionRecord.checkout(pool)\n            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/base.py\", line 712, in checkout\n    rec = pool._do_get()\n          ^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/impl.py\", line 166, in _do_get\n    raise exc.TimeoutError(\n"}, "steps": [{"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "fb181c64-26bc-4d08-b314-2cc89c896579-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "d803b72b-e779-4347-819c-e8e5507129f9-attachment.json", "type": "application/json"}], "start": 1775433131227, "stop": 1775433131227}], "start": 1775433131222, "stop": 1775433131227}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoices/send-to-declaration?invoice_ids=7543312215", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "793753cd-5065-4a63-9f70-5de75835bff9-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "4b994fd6-d106-4e01-9966-b19d1a875898-attachment.json", "type": "application/json"}], "start": 1775433131264, "stop": 1775433131264}, {"name": "Response → 200, trace_id: 11d40477c68369cca2a34aae2bb6262d", "status": "passed", "attachments": [{"name": "response.headers", "source": "76002dd2-6e3c-4bfb-974b-2dbd786a9c4b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6a464489-6686-4d78-afd4-a48bb0de693e-attachment.json", "type": "application/json"}], "start": 1775433131264, "stop": 1775433131264}], "attachments": [{"name": "cURL", "source": "ac1dc19f-9c09-41f1-bef1-ef6d56be8aa8-attachment.txt", "type": "text/plain"}], "start": 1775433131264, "stop": 1775433131264}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "d6b47f59-bc73-48fb-82fb-f4e28234a032-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "40d561dc-dc97-4cea-9c78-a710d50b43da-attachment.json", "type": "application/json"}], "start": 1775433131271, "stop": 1775433131271}], "start": 1775433131267, "stop": 1775433131271}, {"name": "Waiter function: wait_invoice", "status": "passed", "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "1f45c883-3e89-40d9-9513-aa4af51f475e-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "df02cb58-2de7-4d51-8b0f-b26429508d7e-attachment.json", "type": "application/json"}], "start": 1775433131285, "stop": 1775433131285}], "start": 1775433131271, "stop": 1775433131285}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/declaration-requests/create", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "3d9e23cc-62a8-4480-83b2-ef0c999d94e3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0b9ada50-d9ad-4313-bef2-3329cf2417b9-attachment.json", "type": "application/json"}], "start": 1775433131499, "stop": 1775433131499}, {"name": "Response → 200, trace_id: 1e8ac96481ceb71ca182f671c86e55c4", "status": "passed", "attachments": [{"name": "response.headers", "source": "4d14c6da-8e66-48e4-abcc-b2c30c122908-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "9244f43f-d917-45e8-8393-3771d363d32a-attachment.json", "type": "application/json"}], "start": 1775433131499, "stop": 1775433131500}], "attachments": [{"name": "cURL", "source": "fb0a102f-15c4-4c75-bcec-9962be09c328-attachment.txt", "type": "text/plain"}], "start": 1775433131499, "stop": 1775433131500}, {"name": "Waiter function: wait_invoice", "status": "broken", "statusDetails": {"message": "sqlalchemy.exc.TimeoutError: QueuePool limit of size 1 overflow 10 reached, connection timed out, timeout 30.00 (Background on this error at: https://sqlalche.me/e/20/3o7r)\n", "trace": "  File \"/app/src/framework/common/utils/utils.py\", line 218, in wrapped_f\n    return Retrying(\n           ^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 279, in call\n    return attempt.get(self._wrap_exception)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 326, in get\n    raise exc.with_traceback(tb)\n  File \"/usr/local/lib/python3.11/site-packages/retrying.py\", line 273, in call\n    attempt = Attempt(fn(*args, **kwargs), attempt_number, False)\n                      ^^^^^^^^^^^^^^^^^^^\n  File \"/app/src/framework/wms/validation/waiters/acceptance.py\", line 37, in wait_invoice\n    invoice: Invoice = AcceptanceQueries().tx_query(Invoice).filter(Invoice.id == supply_id).first()\n                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/dm_qa_common_libs_db_client/logged_query.py\", line 62, in first\n    result = super().first()\n             ^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/query.py\", line 2759, in first\n    return self.limit(1)._iter().first()  # type: ignore\n           ^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/query.py\", line 2857, in _iter\n    result: Union[ScalarResult[_T], Result[_T]] = self.session.execute(\n                                                  ^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py\", line 2351, in execute\n    return self._execute_internal(\n           ^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py\", line 2239, in _execute_internal\n    conn = self._connection_for_bind(bind)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py\", line 2108, in _connection_for_bind\n    return trans._connection_for_bind(engine, execution_options)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"<string>\", line 2, in _connection_for_bind\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/state_changes.py\", line 137, in _go\n    ret_value = fn(self, *arg, **kw)\n                ^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/orm/session.py\", line 1187, in _connection_for_bind\n    conn = bind.connect()\n           ^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py\", line 3293, in connect\n    return self._connection_cls(self)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py\", line 143, in __init__\n    self._dbapi_connection = engine.raw_connection()\n                             ^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/engine/base.py\", line 3317, in raw_connection\n    return self.pool.connect()\n           ^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/base.py\", line 448, in connect\n    return _ConnectionFairy._checkout(self)\n           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/base.py\", line 1272, in _checkout\n    fairy = _ConnectionRecord.checkout(pool)\n            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/base.py\", line 712, in checkout\n    rec = pool._do_get()\n          ^^^^^^^^^^^^^^\n  File \"/usr/local/lib/python3.11/site-packages/sqlalchemy/pool/impl.py\", line 166, in _do_get\n    raise exc.TimeoutError(\n"}, "steps": [{"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "327af53b-d5b4-49ea-b031-8fee720e017c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "84c4eb34-3b2f-4db9-b375-1aa78b02db5f-attachment.json", "type": "application/json"}], "start": 1775433131507, "stop": 1775433131508}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "d0e29066-a61e-4cb3-9f0a-fc2b220310fb-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "2aeb58c0-ce71-4692-be26-666ebc8112fd-attachment.json", "type": "application/json"}], "start": 1775433151521, "stop": 1775433151522}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "72647ac2-bbd2-403c-92df-5f6015a69549-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "f8fbfad2-f59b-4f8b-806e-1c716432601e-attachment.json", "type": "application/json"}], "start": 1775433171527, "stop": 1775433171527}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "589f9ccb-912f-44c7-b8c5-eb063ecd8340-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "1acac1c3-5b68-4808-8a48-07520edb9626-attachment.json", "type": "application/json"}], "start": 1775433191542, "stop": 1775433191543}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "ac97b0ac-d3c4-458a-a78b-f7cdeb09f04a-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "5b8f0466-d0a3-4470-8085-5e41120614b1-attachment.json", "type": "application/json"}], "start": 1775433211556, "stop": 1775433211556}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "69b5882c-6ff6-459b-8bb3-fa5a946a91d9-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "8f6f1f47-0fe7-47b0-87c1-50ce78e029ae-attachment.json", "type": "application/json"}], "start": 1775433231569, "stop": 1775433231569}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "ba5f737e-8da5-4433-8262-baa12c5bb727-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "58e740ac-054b-44b8-b6d4-0d1b6545ddd7-attachment.json", "type": "application/json"}], "start": 1775433251584, "stop": 1775433251584}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "deac8310-ea32-4c6e-8dc9-1c90869a5404-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "8b872293-da7d-40e3-bc9c-aa2fc66c5b4b-attachment.json", "type": "application/json"}], "start": 1775433271589, "stop": 1775433271590}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "6218355b-a86b-44df-bd91-04441a2cb1b8-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "dca65ebf-8369-4271-9ccc-0aae56e586da-attachment.json", "type": "application/json"}], "start": 1775433291604, "stop": 1775433291604}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "da1715c9-17ae-46f1-aa6f-d3453521dab8-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "60e6fd31-ac60-45b2-81de-1ebffaf1f55c-attachment.json", "type": "application/json"}], "start": 1775433311617, "stop": 1775433311618}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "a33ad0d6-13b6-4b58-8c6f-f3f95650e579-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "501891ba-8e31-4737-8c3c-97d194631e9f-attachment.json", "type": "application/json"}], "start": 1775433331623, "stop": 1775433331624}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "0a16b1eb-2bea-48e7-8480-4579ddd2b2c2-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "d38b635e-bca7-4c33-a90f-59ea7e42187c-attachment.json", "type": "application/json"}], "start": 1775433351639, "stop": 1775433351640}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "94da8f7e-bc14-489b-8447-4d067bf18d9c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "f2f72086-48d9-4444-ac6a-a51a571f134c-attachment.json", "type": "application/json"}], "start": 1775433371654, "stop": 1775433371654}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "d4874719-44e4-429c-909b-87c756b74041-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "8d1f75c6-f11f-4715-a3b7-05c630b985c1-attachment.json", "type": "application/json"}], "start": 1775433391660, "stop": 1775433391660}], "start": 1775433131503, "stop": 1775433441662}], "start": 1775433131222, "stop": 1775433441664}], "attachments": [{"name": "log", "source": "506b9fa5-5462-4b2a-8c53-7a9c353d9175-attachment.txt", "type": "text/plain"}], "parameters": [{"name": "wms_inbound_e2e", "value": "{'warehouse': WMSWarehouse(id=1693627, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, ff_id='WH_TASHKENT', hub_last_mile_id=0, providers=[WMSProvider(last_mile=<DeliveryLastMile.TANAIS: 'TANAIS'>, city_id=<DeliveryCityId.ALIEXPRESS_UZ: 11>, delivery_point_id=<DeliveryPointId.TANAIS: 13>, last_mile_id=<DeliveryLastMileId.TANAIS: 13>, first_mile_id=<DeliveryFirstMileId.Uzbekistan: 12>, assembly_group_id=<AssemblyGroupId.TANAIS: 13>, order_source=<OrderSource.GLOBAL: 'GLOBAL'>, provider_name=<DeliveryLastMile.TANAIS: 'TANAIS'>), 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=100357, phone='1000100357', role_wms_id=23, zone_id=None, patronymic='autotest UZ', last_name='Lancer', password='1234', first_name='Phantom', token='3ad452a1-fdbb-47e7-8747-9a9f324c3fa4', 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), 'zone_id': 31, 'cell': <src.framework.wms.builders.db.cell.AvailableCell object at 0x757edad33110>, 'count_types': {'proper': True, 'defected': True, 'overage': True, 'zero': False}}"}, {"name": "params", "value": "{'sku_amount': 1, 'barcode_count': 3, 'quantity': 9}"}], "start": 1775433121856, "stop": 1775433441664, "uuid": "47ff8b88-67e6-41dd-a0da-a9c294f16fdb", "historyId": "603b8657a2bd4aca38ed2bad572d4feb", "testCaseId": "8492d9fb49209f19f0fcdca811418779", "fullName": "tests.wms.test_e2e_inbound.test_inbound.TestE2EInbound#test_e2e_inbound", "labels": [{"name": "feature", "value": "WMS e2e inbound"}, {"name": "tag", "value": "wms-end-to-end-inbound"}, {"name": "parentSuite", "value": "tests.wms.test_e2e_inbound"}, {"name": "suite", "value": "test_inbound"}, {"name": "subSuite", "value": "TestE2EInbound"}, {"name": "host", "value": "runner-1rdl4o-mi-project-9-concurrent-7-0y09vz3o"}, {"name": "thread", "value": "22-MainThread"}, {"name": "framework", "value": "pytest"}, {"name": "language", "value": "cpython3"}, {"name": "package", "value": "tests.wms.test_e2e_inbound.test_inbound"}], "titlePath": ["tests", "wms", "test_e2e_inbound", "test_inbound.py", "TestE2EInbound"]}