{"name": "test_e2e_inbound[wms_inbound_e2e3-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 0x752973e79890>\nparams = {'barcode_count': 5, 'quantity': 4, 'sku_amount': 3}\nwms_inbound_e2e = {'cell': <src.framework.wms.builders.db.cell.AvailableCell object at 0x752971573e50>, 'count_types': {'defected': Fals...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 0x75297037e2d0>\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": "2d7dfb2e-1ac9-4f0c-a9fb-db3e2b4891cc-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "d7fddc66-463a-42ed-b71c-9f9785907f80-attachment.json", "type": "application/json"}], "start": 1775346849483, "stop": 1775346849483}, {"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "4b11150c-cd50-4235-a59f-2bd6b4d51108-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "86719134-962b-4a15-85ca-8ce57a79cfde-attachment.json", "type": "application/json"}], "start": 1775346849486, "stop": 1775346849486}, {"name": "SQLAlchemy query UPDATE ", "status": "passed", "attachments": [{"name": "query", "source": "25854a79-b3c2-4373-9732-6b575b91f679-attachment.txt", "type": "text/plain"}, {"name": "params", "source": "7df87b4d-d73c-404b-827d-56f5b4e9a3b0-attachment.json", "type": "application/json"}], "start": 1775346849487, "stop": 1775346849487}], "start": 1775346849462, "stop": 1775346849487}, {"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": "b6d0ad21-d24e-494b-96e8-ffbd333a18fe-attachment.json", "type": "application/json"}, {"name": "Response", "source": "18326086-2b5f-4cfc-ab71-dee6632a973f-attachment.json", "type": "application/json"}], "start": 1775346849495, "stop": 1775346849530}, {"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": "7e45080c-41d0-4420-8b29-26ed8e068913-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "673e3631-518b-422f-bb8a-c2e1a3b922e5-attachment.json", "type": "application/json"}], "start": 1775346849537, "stop": 1775346849538}], "start": 1775346849531, "stop": 1775346849538}, {"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": "1336fa84-ab5e-4077-8c80-38db8e392c78-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "f50edcfd-f515-40e5-a134-93701f05e602-attachment.json", "type": "application/json"}], "start": 1775346849550, "stop": 1775346849551}], "start": 1775346849538, "stop": 1775346849551}, {"name": "POST → https://dm-ff-be-facade-gateway.k8s-review.dailymail-tech.uz/ff/publish/invoice/chunk", "status": "passed", "attachments": [{"name": "Request", "source": "133f5212-cbf0-451b-91f6-7ab4ec6d8f4d-attachment.json", "type": "application/json"}, {"name": "Response", "source": "c3541551-aa67-4caf-9894-29e0bc3162b3-attachment.json", "type": "application/json"}], "start": 1775346849554, "stop": 1775346849572}, {"name": "Waiter function: wait_sku_info", "status": "passed", "start": 1775346849572, "stop": 1775346851585}, {"name": "Waiter function: wait_availability_sku", "status": "passed", "start": 1775346851585, "stop": 1775346851587}, {"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": "d29a4fa5-86a1-4db5-bee4-736455ad44f5-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "fdcc32a4-2270-4cbc-81ce-4443eaa9a3a8-attachment.json", "type": "application/json"}], "start": 1775346851599, "stop": 1775346851600}], "start": 1775346851587, "stop": 1775346851600}, {"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": "f343f387-1740-4b5e-b037-95acb5ecdde6-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "7fe3c253-7bbe-4ef9-8d42-aa9d0fe5bce0-attachment.json", "type": "application/json"}], "start": 1775346851612, "stop": 1775346851612}], "start": 1775346851600, "stop": 1775346851612}, {"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": "86cf49a8-029e-439e-91cf-d4fdd01825e3-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "3c5b202f-5468-4202-8caf-4d632111d877-attachment.json", "type": "application/json"}], "start": 1775346851695, "stop": 1775346851695}, {"name": "Response → 200, trace_id: 5380b832a8d17d0e15ab0a37c85d1287", "status": "passed", "attachments": [{"name": "response.headers", "source": "82a60db3-ef65-4d8d-8830-9dee0e6a16cd-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f789226e-13c4-45f4-ba7d-da22dfb1462d-attachment.json", "type": "application/json"}], "start": 1775346851695, "stop": 1775346851696}], "attachments": [{"name": "cURL", "source": "6ce9bef0-b950-4614-ad27-8c0b8893cf0b-attachment.txt", "type": "text/plain"}], "start": 1775346851695, "stop": 1775346851696}, {"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": "220a842b-b1c6-4df2-ac46-515fbe6d53dc-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "9c799bcd-02d8-42ad-915f-62891923382e-attachment.json", "type": "application/json"}], "start": 1775346851720, "stop": 1775346851721}, {"name": "Response → 200, trace_id: 860ee20acc4c614b1c5c27083166943b", "status": "passed", "attachments": [{"name": "response.headers", "source": "a4a2914b-9810-43d0-887d-f2409762ae2e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "17625a38-a31d-424a-b65e-47ef217326a4-attachment.json", "type": "application/json"}], "start": 1775346851721, "stop": 1775346851721}], "attachments": [{"name": "cURL", "source": "9405c793-2acb-4d0f-bcc3-1b32ff5919cf-attachment.txt", "type": "text/plain"}], "start": 1775346851720, "stop": 1775346851721}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/arrival-invoice?invoiceBarcode=WMS7534684964", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "9bfb3624-0c05-433e-ba7e-0f043349ffce-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "0bcaaa86-5d97-4e71-9b79-5ec7bbd394fd-attachment.json", "type": "application/json"}], "start": 1775346851808, "stop": 1775346851809}, {"name": "Response → 200, trace_id: 4bbb3cc42058374b3774d02fd1bebbea", "status": "passed", "attachments": [{"name": "response.headers", "source": "00befb7e-d2f8-43bf-ba9a-210670abe643-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "e39e3c63-c8d1-45fc-8468-3be278ec580b-attachment.json", "type": "application/json"}], "start": 1775346851809, "stop": 1775346851809}], "attachments": [{"name": "cURL", "source": "245a31ac-a94d-42ba-b8ba-3b2d30ec9bd4-attachment.txt", "type": "text/plain"}], "start": 1775346851808, "stop": 1775346851809}, {"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": "4f0c9b97-7b97-4966-902d-bad1cf925758-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "296de0ea-c49e-47ef-aa8a-961f36099c6d-attachment.json", "type": "application/json"}], "start": 1775346851862, "stop": 1775346851863}, {"name": "Response → 200, trace_id: 991b36f644b2e6ee54d4eb66dda9ccb2", "status": "passed", "attachments": [{"name": "response.headers", "source": "153d7c7a-e12d-46f3-96d6-7e9c14aece31-attachment.json", "type": "application/json"}], "start": 1775346851863, "stop": 1775346851863}], "attachments": [{"name": "cURL", "source": "aab55154-d6aa-4fc4-86b3-13115986f644-attachment.txt", "type": "text/plain"}], "start": 1775346851862, "stop": 1775346851863}, {"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": "d42d4e75-8298-453c-a778-36f955b93fe9-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e1778f30-dcc6-4930-bf73-7b114bf4ed22-attachment.json", "type": "application/json"}], "start": 1775346851930, "stop": 1775346851931}, {"name": "Response → 200, trace_id: 435f575cff2493fd3d03aa91c8df1117", "status": "passed", "attachments": [{"name": "response.headers", "source": "6a3f2ccb-3683-4110-97f6-026a575a7382-attachment.json", "type": "application/json"}], "start": 1775346851931, "stop": 1775346851931}], "attachments": [{"name": "cURL", "source": "e3aa508f-06c1-4fc9-b1fb-4801b61bda78-attachment.txt", "type": "text/plain"}], "start": 1775346851930, "stop": 1775346851931}, {"name": "PUT → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/api/v1/update-pallet-weight?palletId=12572367&weight=1463", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5c5dfbee-17f8-4c9e-9c6e-af6268c7ba94-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "afab16c9-577d-46e9-af80-a298176c0321-attachment.json", "type": "application/json"}], "start": 1775346851988, "stop": 1775346851988}, {"name": "Response → 200, trace_id: 4fd060dff1f36ce5b7777d305d4fc099", "status": "passed", "attachments": [{"name": "response.headers", "source": "2a7b3cda-cb61-4396-b045-bb8a95d6131d-attachment.json", "type": "application/json"}], "start": 1775346851988, "stop": 1775346851988}], "attachments": [{"name": "cURL", "source": "f1e8f98f-bed8-4522-92a8-32f26a69cbba-attachment.txt", "type": "text/plain"}], "start": 1775346851988, "stop": 1775346851988}, {"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": "95dff66e-5476-490f-b738-0f4d99b74bee-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c6ef43a4-6c04-4fc1-b80d-980f2fd2fa71-attachment.json", "type": "application/json"}], "start": 1775346852020, "stop": 1775346852020}, {"name": "Response → 200, trace_id: 840093c2062f56ebdec2b2469545b8b1", "status": "passed", "attachments": [{"name": "response.headers", "source": "7feab41f-f14e-4833-8e37-07cff6883f7a-attachment.json", "type": "application/json"}], "start": 1775346852020, "stop": 1775346852020}], "attachments": [{"name": "cURL", "source": "e665877d-0683-47aa-a148-ddef953d0cfe-attachment.txt", "type": "text/plain"}], "start": 1775346852020, "stop": 1775346852020}, {"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": "95a79a28-7d9c-4ee1-ada0-d2eb2356bbf1-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "e19eb172-1864-4fdb-9c80-377c80fc746c-attachment.json", "type": "application/json"}], "start": 1775346852096, "stop": 1775346852097}, {"name": "Response → 200, trace_id: 222b8c3920079f0b2a49397600c112eb", "status": "passed", "attachments": [{"name": "response.headers", "source": "aae4224f-f624-4e52-ad45-061cd44bf59f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "836bc99d-d2f8-4326-8e8b-64b74630ba26-attachment.json", "type": "application/json"}], "start": 1775346852097, "stop": 1775346852097}], "attachments": [{"name": "cURL", "source": "64e33c35-1b0b-475d-ae36-6a3693bc1581-attachment.txt", "type": "text/plain"}], "start": 1775346852096, "stop": 1775346852097}, {"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": "8acd0665-0107-4872-9d9d-2f8bc603c048-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "096287a1-0f47-4797-8c49-adaed65de4ea-attachment.json", "type": "application/json"}], "start": 1775346852122, "stop": 1775346852122}, {"name": "Response → 200, trace_id: e7cdd3538e37251dc085f2f45b15f138", "status": "passed", "attachments": [{"name": "response.headers", "source": "dc16598d-dd09-4ed1-8a23-e4f9418b045a-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "6649b676-8e5e-4df7-8ac1-2befa6a2254e-attachment.json", "type": "application/json"}], "start": 1775346852122, "stop": 1775346852122}], "attachments": [{"name": "cURL", "source": "61a441f7-e8d7-472e-9e7a-dad586d6fcc7-attachment.txt", "type": "text/plain"}], "start": 1775346852122, "stop": 1775346852122}, {"name": "Waiter function: wait_pallet", "status": "passed", "start": 1775346852125, "stop": 1775346852127}], "start": 1775346849492, "stop": 1775346852127}, {"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": "fc948fb7-cfc4-416e-8093-cc97fe1f022f-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "2a265a5a-ae40-4a81-9480-2ee829933a3b-attachment.json", "type": "application/json"}], "start": 1775346852130, "stop": 1775346852131}], "start": 1775346852127, "stop": 1775346852131}, {"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": "f366b52e-f374-402f-8887-a90d083d0fbd-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "0dfd2734-bd84-438e-83e3-942f22ed3390-attachment.json", "type": "application/json"}], "start": 1775346852206, "stop": 1775346852206}, {"name": "Response → 200, trace_id: 8aed283dddcc8114dcfbbd19447f1105", "status": "passed", "attachments": [{"name": "response.headers", "source": "5e7af783-fe32-4fae-9029-912b3a43c05f-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f261c5cd-0986-453c-a5cd-d23a03c6c883-attachment.json", "type": "application/json"}], "start": 1775346852206, "stop": 1775346852206}], "attachments": [{"name": "cURL", "source": "b3351705-746d-4440-8914-c7052e1f4e08-attachment.txt", "type": "text/plain"}], "start": 1775346852206, "stop": 1775346852206}, {"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": "4d86e638-6efd-4696-a6fd-457501be5d12-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "ffb53433-ce8d-4c2e-af44-d8aac6a220bd-attachment.json", "type": "application/json"}], "start": 1775346852232, "stop": 1775346852232}, {"name": "Response → 200, trace_id: 995fd9027951cd6284c40f0ebcde6feb", "status": "passed", "attachments": [{"name": "response.headers", "source": "d02567ea-80d8-4f72-8959-28a5f5ce1f78-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "74eb0f46-8399-41ee-9b55-59a9cd6a5019-attachment.json", "type": "application/json"}], "start": 1775346852232, "stop": 1775346852233}], "attachments": [{"name": "cURL", "source": "08246226-1362-4273-89b6-9f3fa5982851-attachment.txt", "type": "text/plain"}], "start": 1775346852232, "stop": 1775346852233}, {"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": "fc590991-3b12-452b-88fa-695ac1a27a4a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "80506086-9ea3-4921-8247-e62f21b978c4-attachment.json", "type": "application/json"}], "start": 1775346852342, "stop": 1775346852342}, {"name": "Response → 200, trace_id: ed726ac98578019091f76f2673f73fd5", "status": "passed", "attachments": [{"name": "response.headers", "source": "07a14389-27de-4e66-9c68-eb0df83bd71f-attachment.json", "type": "application/json"}], "start": 1775346852342, "stop": 1775346852342}], "attachments": [{"name": "cURL", "source": "33090786-f2ec-425d-aed1-dec462013233-attachment.txt", "type": "text/plain"}], "start": 1775346852342, "stop": 1775346852342}, {"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": "98ae0dbc-11f4-4e5e-a639-caced976f89d-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "d413db33-9976-406d-944d-58485591e5ad-attachment.json", "type": "application/json"}], "start": 1775346852350, "stop": 1775346852350}], "start": 1775346852345, "stop": 1775346852350}], "start": 1775346852127, "stop": 1775346852350}, {"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": "d52eb697-5fff-4547-87e0-d678f8e3a3bd-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "1add416c-bbb0-4d46-ac13-17b69d5b6fa1-attachment.json", "type": "application/json"}], "start": 1775346852363, "stop": 1775346852363}], "start": 1775346852351, "stop": 1775346852363}, {"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": "31953e53-faba-488a-85dc-4c8c1221c480-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "5c480877-058d-486e-9df0-21cc23529e02-attachment.json", "type": "application/json"}], "start": 1775346852440, "stop": 1775346852440}, {"name": "Response → 200, trace_id: a638812f168e7089706f44fde1defff2", "status": "passed", "attachments": [{"name": "response.headers", "source": "b5e70007-d4e8-4797-b54f-fffba8fb0028-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "fb2cec93-be2c-462c-96ad-c5989e7ce864-attachment.json", "type": "application/json"}], "start": 1775346852441, "stop": 1775346852441}], "attachments": [{"name": "cURL", "source": "d4c09e96-cf8b-43c3-a7fa-6e1bb640189f-attachment.txt", "type": "text/plain"}], "start": 1775346852440, "stop": 1775346852441}, {"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": "184bae22-820d-4f23-946b-a1980da1a54a-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "922cb9e1-4a2b-4c11-9810-5f5c90cccb77-attachment.json", "type": "application/json"}], "start": 1775346852463, "stop": 1775346852463}, {"name": "Response → 200, trace_id: 8fe2fc18bf3c65a2b6ef2004c58cfae0", "status": "passed", "attachments": [{"name": "response.headers", "source": "6736cb43-c5cf-4ecd-9e88-e51aea67cb24-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "10db0e00-ac3e-422c-a4b1-b9f97b663eab-attachment.json", "type": "application/json"}], "start": 1775346852463, "stop": 1775346852464}], "attachments": [{"name": "cURL", "source": "1f311e45-06a6-4bed-9f27-6044a748aad8-attachment.txt", "type": "text/plain"}], "start": 1775346852463, "stop": 1775346852464}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoice/7534684964/items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "5cb75494-9ceb-4173-9377-7cbddf61c3dd-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "1d1084d8-439b-47da-90c5-5727d835be1e-attachment.json", "type": "application/json"}], "start": 1775346852550, "stop": 1775346852550}, {"name": "Response → 200, trace_id: 70684bff5363a59925dd34eb273434d6", "status": "passed", "attachments": [{"name": "response.headers", "source": "fc3e464a-60b1-40ee-bc4a-7dd31cbe84a7-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "f4583174-255a-4d18-87db-dc97a5c3ae50-attachment.json", "type": "application/json"}], "start": 1775346852551, "stop": 1775346852551}], "attachments": [{"name": "cURL", "source": "ac9e8a76-3abf-4c03-9d67-49030cfb4eb3-attachment.txt", "type": "text/plain"}], "start": 1775346852550, "stop": 1775346852551}, {"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": "a565f343-0ad4-4ab1-90f7-192f6251cb9d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "12cb3d01-4dd6-4fbf-a380-4379217ae7c7-attachment.json", "type": "application/json"}], "start": 1775346852584, "stop": 1775346852585}, {"name": "Response → 200, trace_id: 1a94255fe15ebc209de2a0b34577a8db", "status": "passed", "attachments": [{"name": "response.headers", "source": "d6486569-763d-4f2d-b967-d687f70cc60e-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "7d3a482c-24bb-4f2a-834a-10d512335c9f-attachment.txt", "type": "text/plain"}], "start": 1775346852585, "stop": 1775346852585}], "attachments": [{"name": "cURL", "source": "e2c1a43b-263a-44b1-a43a-d7b9e7645916-attachment.txt", "type": "text/plain"}], "start": 1775346852584, "stop": 1775346852585}, {"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": "87dbda88-56f2-4faf-b73c-3f5c8c81030a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "962c9433-0dd0-43ca-8374-687efe22dcb2-attachment.json", "type": "application/json"}], "start": 1775346852628, "stop": 1775346852628}, {"name": "Response → 200, trace_id: 68c5b3a9ab1c66c9b31737e2d2e49e8f", "status": "passed", "attachments": [{"name": "response.headers", "source": "49dcda57-1350-4b72-9ae4-c10d229d4e45-attachment.json", "type": "application/json"}], "start": 1775346852629, "stop": 1775346852629}], "attachments": [{"name": "cURL", "source": "e6e815a6-1582-4ef6-93e6-cebcba84a6b8-attachment.txt", "type": "text/plain"}], "start": 1775346852628, "stop": 1775346852629}, {"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": "abebc77b-33ec-4a29-939c-2d2a79e8a885-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c494d57f-7935-4c24-bc4d-4b3cdc8e1766-attachment.json", "type": "application/json"}], "start": 1775346852696, "stop": 1775346852697}, {"name": "Response → 200, trace_id: 19f3ba57f4c6d9e92302ac3ebf2a2f9b", "status": "passed", "attachments": [{"name": "response.headers", "source": "a0652aff-742c-49c3-ba5b-1f6d2d78bc72-attachment.json", "type": "application/json"}], "start": 1775346852697, "stop": 1775346852697}], "attachments": [{"name": "cURL", "source": "de2cc142-f663-4051-8a5e-735dacb16477-attachment.txt", "type": "text/plain"}], "start": 1775346852696, "stop": 1775346852697}, {"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": "d2f3cbd8-95c8-4edc-b469-f226c20575f1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f695d742-5dd3-41c0-8977-b13e204d4763-attachment.json", "type": "application/json"}], "start": 1775346852764, "stop": 1775346852764}, {"name": "Response → 200, trace_id: 1173bc7ef4c942c811a14363735024cf", "status": "passed", "attachments": [{"name": "response.headers", "source": "ca7faa39-4019-4584-b30f-0e5489b5dbf0-attachment.json", "type": "application/json"}], "start": 1775346852764, "stop": 1775346852764}], "attachments": [{"name": "cURL", "source": "2b12b5e4-152a-4d59-8d9c-3290d5c96965-attachment.txt", "type": "text/plain"}], "start": 1775346852764, "stop": 1775346852765}, {"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": "d18ff085-8bf0-4189-a684-0229654159b8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "54a253b1-b887-442b-9514-212bda52eb7f-attachment.json", "type": "application/json"}], "start": 1775346852827, "stop": 1775346852828}, {"name": "Response → 200, trace_id: a098bff122ff87b86d7e086a778a9999", "status": "passed", "attachments": [{"name": "response.headers", "source": "ae708cfd-2cc7-4aa5-8edf-13f56f57bbf4-attachment.json", "type": "application/json"}], "start": 1775346852828, "stop": 1775346852828}], "attachments": [{"name": "cURL", "source": "2b4b7725-e6fa-459c-b28c-f8a6e4e89728-attachment.txt", "type": "text/plain"}], "start": 1775346852827, "stop": 1775346852828}, {"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": "5d8d8a74-e7a2-4674-9a73-d08204d6ad61-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c09a1750-c692-4ad7-91fe-5291797d3703-attachment.json", "type": "application/json"}], "start": 1775346852891, "stop": 1775346852892}, {"name": "Response → 200, trace_id: 0e215555749719f54bf7174bbd4cd17e", "status": "passed", "attachments": [{"name": "response.headers", "source": "80e27288-6a11-4381-840c-19bce990d3a2-attachment.json", "type": "application/json"}], "start": 1775346852892, "stop": 1775346852892}], "attachments": [{"name": "cURL", "source": "3f321ed1-26a0-4b3e-9068-f47fe08baad6-attachment.txt", "type": "text/plain"}], "start": 1775346852891, "stop": 1775346852892}, {"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": "88e1f567-cc20-4e0c-b75c-05841aad9b5e-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5b54e0bc-771d-4ebc-8570-9df73e33b4b3-attachment.json", "type": "application/json"}], "start": 1775346852959, "stop": 1775346852960}, {"name": "Response → 200, trace_id: 41b5578ce5b912cf91ae1933f395a1f7", "status": "passed", "attachments": [{"name": "response.headers", "source": "e7c6607b-bcae-4f06-bea6-f1cc0136ab53-attachment.json", "type": "application/json"}], "start": 1775346852960, "stop": 1775346852960}], "attachments": [{"name": "cURL", "source": "1a703571-7035-4003-b54a-f044fc440a40-attachment.txt", "type": "text/plain"}], "start": 1775346852959, "stop": 1775346852960}, {"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": "df6062e9-1e83-460e-a43a-fd519de7a9c2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5fc3d949-04a0-467c-91b6-9a5c90906d1a-attachment.json", "type": "application/json"}], "start": 1775346853023, "stop": 1775346853023}, {"name": "Response → 200, trace_id: 9a8cee34f9503562dd0a209701cce1d7", "status": "passed", "attachments": [{"name": "response.headers", "source": "6d5191c7-b2dc-4d9c-86c9-a0cb3dc7ddec-attachment.json", "type": "application/json"}], "start": 1775346853023, "stop": 1775346853023}], "attachments": [{"name": "cURL", "source": "0908dec1-9660-44ae-ae02-4e98124dad66-attachment.txt", "type": "text/plain"}], "start": 1775346853023, "stop": 1775346853023}, {"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": "3c3aefcd-df34-4314-830a-604cbd7bdb7d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8c8a354e-6044-4be9-a4b9-17714679cc98-attachment.json", "type": "application/json"}], "start": 1775346853086, "stop": 1775346853087}, {"name": "Response → 200, trace_id: ec69476b020b6d40ca05c503f3f31a75", "status": "passed", "attachments": [{"name": "response.headers", "source": "82ef6e3c-3b52-481b-a018-247f3f4ebb06-attachment.json", "type": "application/json"}], "start": 1775346853087, "stop": 1775346853087}], "attachments": [{"name": "cURL", "source": "180914ad-8a74-4657-a8a2-c6e33bd97889-attachment.txt", "type": "text/plain"}], "start": 1775346853086, "stop": 1775346853087}, {"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": "c2ce6517-0c69-458f-95c8-3c3786b0fe1f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "af540b9a-257e-45cf-90e7-8707a41081ed-attachment.json", "type": "application/json"}], "start": 1775346853152, "stop": 1775346853152}, {"name": "Response → 200, trace_id: 194e41edb2b7e2b3bdff5f809b7534a5", "status": "passed", "attachments": [{"name": "response.headers", "source": "851ad917-5d55-4d08-94f8-48b78ad24f6b-attachment.json", "type": "application/json"}], "start": 1775346853152, "stop": 1775346853152}], "attachments": [{"name": "cURL", "source": "c8dca539-3f41-4e80-b79d-4f3a9fc13714-attachment.txt", "type": "text/plain"}], "start": 1775346853152, "stop": 1775346853152}, {"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": "b2a91a71-678f-4a6d-804c-7d6da813c225-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9214e9d4-8612-40f8-8aeb-a6aec0381b74-attachment.json", "type": "application/json"}], "start": 1775346853219, "stop": 1775346853219}, {"name": "Response → 200, trace_id: f2d225771776c536ad9b6267a1c21aac", "status": "passed", "attachments": [{"name": "response.headers", "source": "e6bff220-4604-4db9-a8b1-64967ed735d0-attachment.json", "type": "application/json"}], "start": 1775346853219, "stop": 1775346853220}], "attachments": [{"name": "cURL", "source": "9c6d821d-8040-421f-9975-2a36de037429-attachment.txt", "type": "text/plain"}], "start": 1775346853219, "stop": 1775346853220}, {"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": "739566e9-0e62-400f-9c1c-fedb300533e1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3d9c0970-b906-43e5-8e53-9a5ad5389532-attachment.json", "type": "application/json"}], "start": 1775346853287, "stop": 1775346853287}, {"name": "Response → 200, trace_id: 5439be1d2bbf9343b5cb40dac6912933", "status": "passed", "attachments": [{"name": "response.headers", "source": "59fb3bbb-7008-4599-8391-128f153eccef-attachment.json", "type": "application/json"}], "start": 1775346853287, "stop": 1775346853287}], "attachments": [{"name": "cURL", "source": "5cfbc7ed-9203-4ea2-8047-25362ab7989b-attachment.txt", "type": "text/plain"}], "start": 1775346853287, "stop": 1775346853288}, {"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": "b2beb97c-23a1-4971-987d-6471eb720215-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6d6a09e0-3179-45d8-a9b9-b6706e2141d7-attachment.json", "type": "application/json"}], "start": 1775346853357, "stop": 1775346853358}, {"name": "Response → 200, trace_id: d24b5e739ec7259713533e186b1639ad", "status": "passed", "attachments": [{"name": "response.headers", "source": "df3fab3d-4d4b-417e-af54-a4750ebd8ea5-attachment.json", "type": "application/json"}], "start": 1775346853358, "stop": 1775346853358}], "attachments": [{"name": "cURL", "source": "0fe7d974-bc09-402a-8325-5029e7616255-attachment.txt", "type": "text/plain"}], "start": 1775346853357, "stop": 1775346853358}, {"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": "be5f6676-dd63-4e98-80f5-4a1b0c268fa5-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9a752a82-7380-4a7e-b54a-4aa7ad50f299-attachment.json", "type": "application/json"}], "start": 1775346853430, "stop": 1775346853430}, {"name": "Response → 200, trace_id: 88bfcd19e85049bac82bf0ebdc8c5766", "status": "passed", "attachments": [{"name": "response.headers", "source": "e5bf540c-53ed-42ec-9def-9108a47fcaf3-attachment.json", "type": "application/json"}], "start": 1775346853431, "stop": 1775346853431}], "attachments": [{"name": "cURL", "source": "c8e5317c-8487-410a-9451-509ff76bac87-attachment.txt", "type": "text/plain"}], "start": 1775346853430, "stop": 1775346853431}, {"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": "73ef0594-9b24-4fdd-9b76-65fdeff34efd-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "932db354-20bc-4009-b006-e17800db913d-attachment.json", "type": "application/json"}], "start": 1775346853510, "stop": 1775346853510}, {"name": "Response → 200, trace_id: 44d4252473f794798f0b1cab231d659c", "status": "passed", "attachments": [{"name": "response.headers", "source": "b7ac9811-056d-4453-8304-d68c397948cf-attachment.json", "type": "application/json"}], "start": 1775346853510, "stop": 1775346853510}], "attachments": [{"name": "cURL", "source": "97efb431-747c-4f82-ab17-5a4e17d9599e-attachment.txt", "type": "text/plain"}], "start": 1775346853510, "stop": 1775346853510}, {"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": "6dc4380b-7968-45ee-8129-8f96b3c3d34c-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e99909a2-d6fa-42b6-9e10-2d2a97ab269a-attachment.json", "type": "application/json"}], "start": 1775346853583, "stop": 1775346853583}, {"name": "Response → 200, trace_id: 1ba63a178abd8328868dd0f2e295be43", "status": "passed", "attachments": [{"name": "response.headers", "source": "b173f910-827f-46e5-82d9-47f326b21940-attachment.json", "type": "application/json"}], "start": 1775346853583, "stop": 1775346853583}], "attachments": [{"name": "cURL", "source": "dd061ceb-245b-48e4-b352-5ea36b8e2596-attachment.txt", "type": "text/plain"}], "start": 1775346853583, "stop": 1775346853583}, {"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": "eadcd61c-e9df-4c0d-9067-9abdf3747db4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "65ab833c-909b-4f06-b986-a6064a8987ab-attachment.json", "type": "application/json"}], "start": 1775346853648, "stop": 1775346853648}, {"name": "Response → 200, trace_id: bbc4e06332637cac437c450ed7ce4a8a", "status": "passed", "attachments": [{"name": "response.headers", "source": "110dce70-4076-4c85-b085-fee0600ae528-attachment.json", "type": "application/json"}], "start": 1775346853648, "stop": 1775346853648}], "attachments": [{"name": "cURL", "source": "79fbd51c-7ae4-4327-9345-87b6ae4ec3c0-attachment.txt", "type": "text/plain"}], "start": 1775346853648, "stop": 1775346853648}, {"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": "5035071f-14d0-4134-af11-cd638b488b01-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0e9ffff4-3646-4e59-aee4-1c6838c4ae84-attachment.json", "type": "application/json"}], "start": 1775346853712, "stop": 1775346853712}, {"name": "Response → 200, trace_id: 14c658b0c9a1f38c2fecefa6390d3fe3", "status": "passed", "attachments": [{"name": "response.headers", "source": "9caaf71a-bf9b-4c01-b445-85d38cbcda12-attachment.json", "type": "application/json"}], "start": 1775346853712, "stop": 1775346853712}], "attachments": [{"name": "cURL", "source": "5d3d23d4-35d8-466d-8440-c29f4d98bb42-attachment.txt", "type": "text/plain"}], "start": 1775346853712, "stop": 1775346853712}, {"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": "01e88ba6-b956-4eed-ad12-621b9ef24e68-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "816906c3-af56-4c8b-84d0-d7c1eed8921c-attachment.json", "type": "application/json"}], "start": 1775346853782, "stop": 1775346853783}, {"name": "Response → 200, trace_id: 362d6ff032d7e3e19b2471632e9d3faf", "status": "passed", "attachments": [{"name": "response.headers", "source": "0684a3d5-8d58-43a3-9f94-2b0b776746cb-attachment.json", "type": "application/json"}], "start": 1775346853783, "stop": 1775346853783}], "attachments": [{"name": "cURL", "source": "7014dfc1-670e-4c96-87fb-6550c22c556c-attachment.txt", "type": "text/plain"}], "start": 1775346853782, "stop": 1775346853783}, {"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": "1fcb4a1c-909c-4e89-9e52-82ea3015c265-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e2e364b8-408f-4b72-835e-54a808f23330-attachment.json", "type": "application/json"}], "start": 1775346853850, "stop": 1775346853850}, {"name": "Response → 200, trace_id: 03bf7c87a68e70aecc31a83a3c3a1ce8", "status": "passed", "attachments": [{"name": "response.headers", "source": "cdbda981-4966-42a8-bc7d-bcdb17309d35-attachment.json", "type": "application/json"}], "start": 1775346853850, "stop": 1775346853850}], "attachments": [{"name": "cURL", "source": "170ac381-e152-4333-861c-4fb428b8668a-attachment.txt", "type": "text/plain"}], "start": 1775346853850, "stop": 1775346853850}, {"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": "4908b3b9-62c5-43f3-b49d-7a2624db8f07-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "99cbd550-589a-45e6-b793-ca234171e42e-attachment.json", "type": "application/json"}], "start": 1775346853921, "stop": 1775346853922}, {"name": "Response → 200, trace_id: 2936127131ec8c9d782ed7b6a82280bf", "status": "passed", "attachments": [{"name": "response.headers", "source": "e11ec38f-f9ba-4858-b9b1-b1eab6f689ae-attachment.json", "type": "application/json"}], "start": 1775346853922, "stop": 1775346853922}], "attachments": [{"name": "cURL", "source": "fafe5eff-a9e3-41c6-b184-81137f5a057b-attachment.txt", "type": "text/plain"}], "start": 1775346853921, "stop": 1775346853922}, {"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": "821e926b-e44d-447d-86c2-39ca6577ffdf-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d7be8c76-e56e-47f9-a7f8-332181a76433-attachment.json", "type": "application/json"}], "start": 1775346853993, "stop": 1775346853994}, {"name": "Response → 200, trace_id: 732348b42cb344a154d1ad41d0624660", "status": "passed", "attachments": [{"name": "response.headers", "source": "e48d2fed-a5b2-48a1-84bd-4602a5b78641-attachment.json", "type": "application/json"}], "start": 1775346853994, "stop": 1775346853994}], "attachments": [{"name": "cURL", "source": "ddb01ffc-b331-4862-8719-5c54a9477531-attachment.txt", "type": "text/plain"}], "start": 1775346853993, "stop": 1775346853994}, {"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": "4497773b-0691-4712-80ca-ee38f71b075b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "3934a787-4c31-4afa-b816-e0ebde000d76-attachment.json", "type": "application/json"}], "start": 1775346854064, "stop": 1775346854065}, {"name": "Response → 200, trace_id: 299f1c2d1fa2035f32d667da9961fd57", "status": "passed", "attachments": [{"name": "response.headers", "source": "bce3e552-9f20-4cf2-978c-41e444627abb-attachment.json", "type": "application/json"}], "start": 1775346854065, "stop": 1775346854065}], "attachments": [{"name": "cURL", "source": "cf608f2c-dae5-4f5a-a838-5fa6f885ef5f-attachment.txt", "type": "text/plain"}], "start": 1775346854064, "stop": 1775346854065}, {"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": "c8e0d29b-bd43-441d-b8f4-64c0b76f2ab1-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "70456587-9c79-4088-ad6f-092107df6a11-attachment.json", "type": "application/json"}], "start": 1775346854133, "stop": 1775346854134}, {"name": "Response → 200, trace_id: 27696e0e2312dfc57f8c3c826a7162d9", "status": "passed", "attachments": [{"name": "response.headers", "source": "2812ed0e-b189-4d1e-bf48-70fcfce4b5d8-attachment.json", "type": "application/json"}], "start": 1775346854134, "stop": 1775346854134}], "attachments": [{"name": "cURL", "source": "835bc43a-7375-421e-adeb-4dea090131b9-attachment.txt", "type": "text/plain"}], "start": 1775346854133, "stop": 1775346854134}, {"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": "d310649b-4ada-48b8-b083-adaa53ef1042-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9af0ae56-50b4-47e4-9f67-05aee452dfed-attachment.json", "type": "application/json"}], "start": 1775346854200, "stop": 1775346854201}, {"name": "Response → 200, trace_id: 51acb66cf4ad8c778632e15494e614fa", "status": "passed", "attachments": [{"name": "response.headers", "source": "9fc6f7d0-ea78-4bbc-b5fb-80a088505d5b-attachment.json", "type": "application/json"}], "start": 1775346854201, "stop": 1775346854201}], "attachments": [{"name": "cURL", "source": "12e0d4ed-0225-482f-bad0-0913143eb6f2-attachment.txt", "type": "text/plain"}], "start": 1775346854200, "stop": 1775346854201}, {"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": "2b1f5712-c6f2-4e49-b8f0-c74c71b7ad1f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "9b84205d-7b86-4642-af82-615e081887db-attachment.json", "type": "application/json"}], "start": 1775346854265, "stop": 1775346854265}, {"name": "Response → 200, trace_id: 89f99089ca88af01a6848897ebe59a24", "status": "passed", "attachments": [{"name": "response.headers", "source": "4966b555-2968-45c7-afca-0b91b2dfba5d-attachment.json", "type": "application/json"}], "start": 1775346854265, "stop": 1775346854266}], "attachments": [{"name": "cURL", "source": "4dc0b35a-617e-43a6-8bdb-4dded0adb6ce-attachment.txt", "type": "text/plain"}], "start": 1775346854265, "stop": 1775346854266}, {"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": "ad64b1b8-332a-4c58-b70a-87a0bf813ba2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0526adb2-e791-42a9-984a-94ede7557b75-attachment.json", "type": "application/json"}], "start": 1775346854336, "stop": 1775346854336}, {"name": "Response → 200, trace_id: 2d7375efc6a540e917aa50a6724a9d1b", "status": "passed", "attachments": [{"name": "response.headers", "source": "4a65ed27-dee0-443a-9917-02a51d2f2c65-attachment.json", "type": "application/json"}], "start": 1775346854336, "stop": 1775346854336}], "attachments": [{"name": "cURL", "source": "44420a67-dc8a-4cb7-a664-9fadeb542e4f-attachment.txt", "type": "text/plain"}], "start": 1775346854336, "stop": 1775346854336}, {"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": "165991a6-e340-4bbe-b3ee-3a38ea9593a3-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d041fcea-4906-4904-bffb-2e218c56d199-attachment.json", "type": "application/json"}], "start": 1775346854401, "stop": 1775346854401}, {"name": "Response → 200, trace_id: 0209882c9613c1b24c6d8ed185a39a07", "status": "passed", "attachments": [{"name": "response.headers", "source": "79440178-f79c-4f17-b067-99fe9453faac-attachment.json", "type": "application/json"}], "start": 1775346854401, "stop": 1775346854401}], "attachments": [{"name": "cURL", "source": "c39cfd59-8ffd-4f68-9f76-62fea95475a7-attachment.txt", "type": "text/plain"}], "start": 1775346854401, "stop": 1775346854402}, {"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": "f5f71abd-0cc9-42c3-bdfd-ed0ae9a27deb-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "f68f98cc-9ea2-4f03-a7c2-0901d20de840-attachment.json", "type": "application/json"}], "start": 1775346854466, "stop": 1775346854466}, {"name": "Response → 200, trace_id: 345b8e5ffbf2cb79e82ce1cbb2ee1388", "status": "passed", "attachments": [{"name": "response.headers", "source": "5d67c848-7e80-45a2-ac07-02452f324d6e-attachment.json", "type": "application/json"}], "start": 1775346854466, "stop": 1775346854466}], "attachments": [{"name": "cURL", "source": "f6adf0aa-986d-43ed-8f9f-9be329903bd9-attachment.txt", "type": "text/plain"}], "start": 1775346854466, "stop": 1775346854467}, {"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": "52a6c766-d08b-419f-b197-ee7e6a39ccf8-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c36e6760-24d6-4d41-b324-5190952b0d67-attachment.json", "type": "application/json"}], "start": 1775346854531, "stop": 1775346854531}, {"name": "Response → 200, trace_id: 5b9a5536246952acdb3952ad52ff18d5", "status": "passed", "attachments": [{"name": "response.headers", "source": "d7f01840-80cb-4404-8bbc-ec30bab3a164-attachment.json", "type": "application/json"}], "start": 1775346854531, "stop": 1775346854531}], "attachments": [{"name": "cURL", "source": "0283d69d-0a38-4264-b77a-977d4f1fbbbd-attachment.txt", "type": "text/plain"}], "start": 1775346854531, "stop": 1775346854532}, {"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": "7294f00d-346e-42b7-ba93-4b289a7cd765-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "bea99a67-658b-4da0-a20b-4ded55674a03-attachment.json", "type": "application/json"}], "start": 1775346854595, "stop": 1775346854596}, {"name": "Response → 200, trace_id: 8a98476a98ac57574370c0f0615657be", "status": "passed", "attachments": [{"name": "response.headers", "source": "0f508452-845b-4a2c-9f78-315f5043af94-attachment.json", "type": "application/json"}], "start": 1775346854596, "stop": 1775346854596}], "attachments": [{"name": "cURL", "source": "77eeaa4c-b23e-42fd-9b18-46f605c818df-attachment.txt", "type": "text/plain"}], "start": 1775346854595, "stop": 1775346854596}, {"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": "bcc16046-0e9f-4b90-bb73-0f0b486ca96a-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1939aebb-8552-4166-96e4-e27beff79901-attachment.json", "type": "application/json"}], "start": 1775346854663, "stop": 1775346854664}, {"name": "Response → 200, trace_id: b697a579cdb2d5759d7bfdbca98d54d5", "status": "passed", "attachments": [{"name": "response.headers", "source": "c704345f-b8ee-4326-b3d5-e687494e043d-attachment.json", "type": "application/json"}], "start": 1775346854664, "stop": 1775346854664}], "attachments": [{"name": "cURL", "source": "f19527d3-da72-481b-9a23-ce98d2ee5f31-attachment.txt", "type": "text/plain"}], "start": 1775346854663, "stop": 1775346854664}, {"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": "d59b3926-2f06-44b5-b30b-3246597499a2-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "745bdfc8-c163-43ff-9fc8-57f6fac023ae-attachment.json", "type": "application/json"}], "start": 1775346854732, "stop": 1775346854732}, {"name": "Response → 200, trace_id: dc8943c49ad4cc07bfa87573a8bfdd35", "status": "passed", "attachments": [{"name": "response.headers", "source": "fd462810-87a5-4d00-aa65-a00e8aafc0b7-attachment.json", "type": "application/json"}], "start": 1775346854732, "stop": 1775346854732}], "attachments": [{"name": "cURL", "source": "b7efb2e1-ebb0-4318-9927-ec7dc5762dbb-attachment.txt", "type": "text/plain"}], "start": 1775346854732, "stop": 1775346854733}, {"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": "3c624842-2f78-4d5f-ac38-0399a9fd1188-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "443f9467-bdc3-4260-a46f-73a63d1b8e0f-attachment.json", "type": "application/json"}], "start": 1775346854798, "stop": 1775346854798}, {"name": "Response → 200, trace_id: 8f490996f4a4cae9aacd4fd0065ae2ff", "status": "passed", "attachments": [{"name": "response.headers", "source": "73a1ae3e-69b8-488d-9739-835dc9425fb8-attachment.json", "type": "application/json"}], "start": 1775346854798, "stop": 1775346854798}], "attachments": [{"name": "cURL", "source": "f3c44840-9659-41e7-857f-8ad04b56d2e4-attachment.txt", "type": "text/plain"}], "start": 1775346854798, "stop": 1775346854798}, {"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": "21f045f0-5e8e-462e-b911-9ed1b5c6ad32-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "56409742-e7bf-49e3-a45b-3b6fc31a4b89-attachment.json", "type": "application/json"}], "start": 1775346854868, "stop": 1775346854868}, {"name": "Response → 200, trace_id: b9a5245e3bf88da6620b1343b01326a8", "status": "passed", "attachments": [{"name": "response.headers", "source": "54fe8daf-7e2c-49d5-8a81-41b328d286a9-attachment.json", "type": "application/json"}], "start": 1775346854868, "stop": 1775346854868}], "attachments": [{"name": "cURL", "source": "f1f82d3a-2a22-4da8-a5f7-acf2c2eb0f74-attachment.txt", "type": "text/plain"}], "start": 1775346854868, "stop": 1775346854868}, {"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": "8e95fece-a9bb-4c82-8bf2-74137f34c9dd-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "6edcacbb-fcb8-408c-ae02-af54c00dd049-attachment.json", "type": "application/json"}], "start": 1775346854933, "stop": 1775346854933}, {"name": "Response → 200, trace_id: 4d5f25abca4a9feb399327ae76bbabe1", "status": "passed", "attachments": [{"name": "response.headers", "source": "f56b7b9e-fd57-4814-8eb9-d6890d4bfe3e-attachment.json", "type": "application/json"}], "start": 1775346854933, "stop": 1775346854933}], "attachments": [{"name": "cURL", "source": "fcfb9042-6b0a-45ae-b8e7-a437210d09d1-attachment.txt", "type": "text/plain"}], "start": 1775346854933, "stop": 1775346854933}, {"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": "b3c79432-5792-4c61-9d43-a9861a371922-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "fa7ebcd7-5167-4a82-a30f-6759d4d730fe-attachment.json", "type": "application/json"}], "start": 1775346854997, "stop": 1775346854997}, {"name": "Response → 200, trace_id: c128c2aedac809e8d21694d3698094dc", "status": "passed", "attachments": [{"name": "response.headers", "source": "2251ab75-7b21-4cf0-982c-adf9cecca483-attachment.json", "type": "application/json"}], "start": 1775346854997, "stop": 1775346854998}], "attachments": [{"name": "cURL", "source": "2b0927c7-c3dc-4da6-bd4a-7335a1174b40-attachment.txt", "type": "text/plain"}], "start": 1775346854997, "stop": 1775346854998}, {"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": "443985ab-02e7-42a1-b3a5-b3bef6a89e3f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "816f3531-28ba-4444-adf4-e01df071a49d-attachment.json", "type": "application/json"}], "start": 1775346855060, "stop": 1775346855061}, {"name": "Response → 200, trace_id: 66ba0f0342ffc16957343b69393db87f", "status": "passed", "attachments": [{"name": "response.headers", "source": "736d0aec-4cdc-4d53-b517-2d05370fe1ed-attachment.json", "type": "application/json"}], "start": 1775346855061, "stop": 1775346855061}], "attachments": [{"name": "cURL", "source": "d846cc91-9705-4e59-836b-eb2a477128c7-attachment.txt", "type": "text/plain"}], "start": 1775346855060, "stop": 1775346855061}, {"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": "4ad0bf92-f087-4965-8dbe-908f1dd1c364-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cf292d04-7233-4909-88fd-6b717f79ddc8-attachment.json", "type": "application/json"}], "start": 1775346855127, "stop": 1775346855127}, {"name": "Response → 200, trace_id: 359cc75c1c65a46c80fee9003296f7fd", "status": "passed", "attachments": [{"name": "response.headers", "source": "8ec2cb59-e029-4786-87c2-e03557582c46-attachment.json", "type": "application/json"}], "start": 1775346855127, "stop": 1775346855127}], "attachments": [{"name": "cURL", "source": "b9a4afe8-3315-42c7-a9a4-007403ea8260-attachment.txt", "type": "text/plain"}], "start": 1775346855127, "stop": 1775346855127}, {"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": "17ff71c0-21e9-4df1-8178-7a37a5104686-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b8769bff-7590-4fca-a317-65ef26cac125-attachment.json", "type": "application/json"}], "start": 1775346855193, "stop": 1775346855193}, {"name": "Response → 200, trace_id: 0bd5090680ba8427c45245c0a5a86f0a", "status": "passed", "attachments": [{"name": "response.headers", "source": "66b92420-e1d0-4cd0-93d6-a73372dfef27-attachment.json", "type": "application/json"}], "start": 1775346855193, "stop": 1775346855194}], "attachments": [{"name": "cURL", "source": "d7f8d5df-2ce9-4120-97ae-ef58e8e911d6-attachment.txt", "type": "text/plain"}], "start": 1775346855193, "stop": 1775346855194}, {"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": "86fcf831-17f4-405c-b9f6-59a59c4c4a7b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "cbbb8509-b46e-494c-8fa3-0ba9dd1065d4-attachment.json", "type": "application/json"}], "start": 1775346855257, "stop": 1775346855258}, {"name": "Response → 200, trace_id: e0dd9e6af1c1e6637cb278af7116cc3a", "status": "passed", "attachments": [{"name": "response.headers", "source": "7def8813-c8db-4312-99fd-7f5b1eb0379a-attachment.json", "type": "application/json"}], "start": 1775346855258, "stop": 1775346855258}], "attachments": [{"name": "cURL", "source": "948ebcaf-2031-4d9c-81f3-6a3af040e8ad-attachment.txt", "type": "text/plain"}], "start": 1775346855257, "stop": 1775346855258}, {"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": "02be155a-4ab9-4443-bfe1-e5c6997a5b53-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "daaa172a-0846-4d3d-965a-29b7270600ba-attachment.json", "type": "application/json"}], "start": 1775346855322, "stop": 1775346855323}, {"name": "Response → 200, trace_id: 81b00ed2ee0d31e9c3d9e67560c03f5c", "status": "passed", "attachments": [{"name": "response.headers", "source": "8b6f7c28-6834-49fa-a837-8681acba68cb-attachment.json", "type": "application/json"}], "start": 1775346855323, "stop": 1775346855323}], "attachments": [{"name": "cURL", "source": "9ba0628e-9575-4119-8968-7735e00dd903-attachment.txt", "type": "text/plain"}], "start": 1775346855322, "stop": 1775346855323}, {"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": "f6a1d41a-c8ee-4e0a-941a-b48ecd48d935-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c29008fe-3941-41cd-b541-a665ead9bb92-attachment.json", "type": "application/json"}], "start": 1775346855391, "stop": 1775346855392}, {"name": "Response → 200, trace_id: d32277865ba7080a7e21a3eb94ae36db", "status": "passed", "attachments": [{"name": "response.headers", "source": "42a4aa4a-8896-4228-8004-fd4690c62431-attachment.json", "type": "application/json"}], "start": 1775346855392, "stop": 1775346855392}], "attachments": [{"name": "cURL", "source": "fd81baba-ab3d-4b95-8278-f7976058001f-attachment.txt", "type": "text/plain"}], "start": 1775346855391, "stop": 1775346855392}, {"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": "fced234a-f493-4276-aefd-e7c385293575-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a566b7ed-2c48-4cb1-be78-15e335368748-attachment.json", "type": "application/json"}], "start": 1775346855455, "stop": 1775346855455}, {"name": "Response → 200, trace_id: 096c4283ecd5dbec7ff7f0713afc9ff4", "status": "passed", "attachments": [{"name": "response.headers", "source": "1bef230f-cc9a-4a98-94ed-6971e0134ac4-attachment.json", "type": "application/json"}], "start": 1775346855455, "stop": 1775346855455}], "attachments": [{"name": "cURL", "source": "2288a62a-e264-4163-a311-02ff720df514-attachment.txt", "type": "text/plain"}], "start": 1775346855455, "stop": 1775346855455}, {"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": "29274b7a-3e20-4358-b1c9-94d29fce4d46-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1d5276e3-7c3e-44fd-bceb-79badf6efd38-attachment.json", "type": "application/json"}], "start": 1775346855520, "stop": 1775346855521}, {"name": "Response → 200, trace_id: 9f4f44f92d0b5749803fbc29a731a416", "status": "passed", "attachments": [{"name": "response.headers", "source": "804cdff6-0ae4-4c74-8bd3-438ab202cc36-attachment.json", "type": "application/json"}], "start": 1775346855521, "stop": 1775346855521}], "attachments": [{"name": "cURL", "source": "9d554554-7e32-4cb1-8f46-b0fcc2436e0d-attachment.txt", "type": "text/plain"}], "start": 1775346855520, "stop": 1775346855521}, {"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": "9ea7f9d4-cb11-4cdc-9f49-00258eb1bceb-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c1e66d0c-7c48-43a6-9ea6-b0864fd3aa2c-attachment.json", "type": "application/json"}], "start": 1775346855582, "stop": 1775346855582}, {"name": "Response → 200, trace_id: 6e1da1b71e9a3a7318f5366bb37801c3", "status": "passed", "attachments": [{"name": "response.headers", "source": "c7588b49-9ebb-44c9-9a93-58dd6f89b1bd-attachment.json", "type": "application/json"}], "start": 1775346855582, "stop": 1775346855582}], "attachments": [{"name": "cURL", "source": "5f520685-f5c7-40b4-9635-73fe38e8640a-attachment.txt", "type": "text/plain"}], "start": 1775346855582, "stop": 1775346855583}, {"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": "d0b89318-520b-407e-9e1a-af68009e23b6-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5cca538c-fd2f-4403-ab85-bdb087e26cbb-attachment.json", "type": "application/json"}], "start": 1775346855648, "stop": 1775346855648}, {"name": "Response → 200, trace_id: 44a872145d80056718ce4e309bf57111", "status": "passed", "attachments": [{"name": "response.headers", "source": "b7fe4a29-dc7a-4e61-a8d3-974be4904422-attachment.json", "type": "application/json"}], "start": 1775346855648, "stop": 1775346855648}], "attachments": [{"name": "cURL", "source": "05e07ea2-14da-4d1b-9bf4-906dba811d16-attachment.txt", "type": "text/plain"}], "start": 1775346855648, "stop": 1775346855649}, {"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": "f7a60bc7-fc20-4677-b650-299451563e24-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "e3a59a06-0c26-4a37-8032-6399297452a3-attachment.json", "type": "application/json"}], "start": 1775346855713, "stop": 1775346855714}, {"name": "Response → 200, trace_id: 5313280594969dea05b591940fda89c2", "status": "passed", "attachments": [{"name": "response.headers", "source": "1bc7d723-513f-4de1-a6ee-c39ee396c208-attachment.json", "type": "application/json"}], "start": 1775346855714, "stop": 1775346855714}], "attachments": [{"name": "cURL", "source": "eae8cb2f-d8c7-4d59-a9d5-ea8a992b7382-attachment.txt", "type": "text/plain"}], "start": 1775346855713, "stop": 1775346855714}, {"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": "861e2cbf-ad24-47bb-a139-0533d1774ddf-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8de24253-51cf-48e5-a7a1-8290f70a0a6e-attachment.json", "type": "application/json"}], "start": 1775346855776, "stop": 1775346855777}, {"name": "Response → 200, trace_id: 8eb7cc1b4ade752723e024fc3db39a7b", "status": "passed", "attachments": [{"name": "response.headers", "source": "399f3789-33ab-402e-8aef-e12a3dd49be4-attachment.json", "type": "application/json"}], "start": 1775346855777, "stop": 1775346855777}], "attachments": [{"name": "cURL", "source": "c7fc8c9c-17a2-4e12-9b84-aa0c655fe3c5-attachment.txt", "type": "text/plain"}], "start": 1775346855776, "stop": 1775346855777}, {"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": "ce08b9f0-1623-47f3-b886-c0c403e3df5f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "abaf3d57-f07e-4501-9f0b-a5c18da682d8-attachment.json", "type": "application/json"}], "start": 1775346855840, "stop": 1775346855840}, {"name": "Response → 200, trace_id: 640d59a5359395b565b79dac415f717a", "status": "passed", "attachments": [{"name": "response.headers", "source": "d82fd5da-0167-49ca-96af-1b79ec5abf6f-attachment.json", "type": "application/json"}], "start": 1775346855840, "stop": 1775346855840}], "attachments": [{"name": "cURL", "source": "daf2f7d0-130e-40ac-aaec-c8e85e6f8e02-attachment.txt", "type": "text/plain"}], "start": 1775346855840, "stop": 1775346855840}, {"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": "f2e3ca34-7985-4532-af36-6ca2c5bdd32d-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "689e135e-e0f6-46d3-90cf-2476bb18da3c-attachment.json", "type": "application/json"}], "start": 1775346855934, "stop": 1775346855935}, {"name": "Response → 200, trace_id: d7216e2a4f5403ddde8f4a9d4895e505", "status": "passed", "attachments": [{"name": "response.headers", "source": "90ff2c61-1604-4ab4-9e62-ecfa8d1ef367-attachment.json", "type": "application/json"}], "start": 1775346855935, "stop": 1775346855935}], "attachments": [{"name": "cURL", "source": "da076646-0e97-424a-91a0-5f5e7f506493-attachment.txt", "type": "text/plain"}], "start": 1775346855934, "stop": 1775346855935}, {"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": "9bf755e6-ad2b-4ea9-b863-dc4cdfb98361-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "7354b2c5-01dc-405d-a146-69f9d2b0afa6-attachment.json", "type": "application/json"}], "start": 1775346856057, "stop": 1775346856057}, {"name": "Response → 200, trace_id: 0f5e4962518d5dea9b4618ca9e0c619c", "status": "passed", "attachments": [{"name": "response.headers", "source": "19e43944-9aa4-4bcf-a4c9-91463b914eae-attachment.json", "type": "application/json"}], "start": 1775346856057, "stop": 1775346856057}], "attachments": [{"name": "cURL", "source": "0e7ddfba-5924-4be6-a740-217e579541a0-attachment.txt", "type": "text/plain"}], "start": 1775346856057, "stop": 1775346856057}, {"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": "5f18d287-81d4-4445-89ac-0de95f3f4366-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0147ef69-0af0-4fe2-be44-b823c575a963-attachment.json", "type": "application/json"}], "start": 1775346856121, "stop": 1775346856121}, {"name": "Response → 200, trace_id: db3c9330f9c734c719466ef4a4cf88d1", "status": "passed", "attachments": [{"name": "response.headers", "source": "fb93fffa-613c-4998-9ded-fce472214f1f-attachment.json", "type": "application/json"}], "start": 1775346856121, "stop": 1775346856121}], "attachments": [{"name": "cURL", "source": "0fbc564a-02c0-4467-844a-b2c4c520d657-attachment.txt", "type": "text/plain"}], "start": 1775346856120, "stop": 1775346856121}, {"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": "7a9fe5a1-2915-4722-8c50-e0038973ce73-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "40099b1e-cc88-4b63-8921-1f4e7fabef94-attachment.json", "type": "application/json"}], "start": 1775346856184, "stop": 1775346856184}, {"name": "Response → 200, trace_id: d69ec0f1337596625146ee2f173c663c", "status": "passed", "attachments": [{"name": "response.headers", "source": "81ec39d7-5d0e-491a-9c55-b2c2e4bf982e-attachment.json", "type": "application/json"}], "start": 1775346856184, "stop": 1775346856184}], "attachments": [{"name": "cURL", "source": "798da517-c1af-41c7-9709-baa94cdedb67-attachment.txt", "type": "text/plain"}], "start": 1775346856184, "stop": 1775346856184}, {"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": "0e4e11ae-4f24-46ad-b910-328acbf0c837-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "02d81aef-c6d2-423e-aef9-2651290a4132-attachment.json", "type": "application/json"}], "start": 1775346856261, "stop": 1775346856261}, {"name": "Response → 200, trace_id: a30129195d3244b157e60f352a735ee4", "status": "passed", "attachments": [{"name": "response.headers", "source": "df5c2c83-12f2-4c27-af48-d810710651c0-attachment.json", "type": "application/json"}], "start": 1775346856261, "stop": 1775346856261}], "attachments": [{"name": "cURL", "source": "65842d94-1e68-4428-8d9d-3415080aef46-attachment.txt", "type": "text/plain"}], "start": 1775346856261, "stop": 1775346856261}, {"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": "38fc8d29-93c1-4302-874c-974d3e1cf7cf-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "03cdeb04-2942-4241-8acd-2e77e9c0fc62-attachment.json", "type": "application/json"}], "start": 1775346856321, "stop": 1775346856321}, {"name": "Response → 200, trace_id: 33522d5b620e0abec471038617543990", "status": "passed", "attachments": [{"name": "response.headers", "source": "3935403d-f502-4b02-9505-642aba00171c-attachment.json", "type": "application/json"}], "start": 1775346856321, "stop": 1775346856321}], "attachments": [{"name": "cURL", "source": "51a4f645-b57d-46ca-a747-5507978988bc-attachment.txt", "type": "text/plain"}], "start": 1775346856321, "stop": 1775346856321}, {"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": "7a3aaeb2-4dc7-422e-9bd0-34b179902aac-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "0ec472cb-f8bd-41c3-8de8-2c9bd168c3f2-attachment.json", "type": "application/json"}], "start": 1775346856385, "stop": 1775346856385}, {"name": "Response → 200, trace_id: 579e59c3f62cfef5e725caa3f812a880", "status": "passed", "attachments": [{"name": "response.headers", "source": "4e59df15-aff9-4c5a-af21-a9e97d4ead7e-attachment.json", "type": "application/json"}], "start": 1775346856385, "stop": 1775346856385}], "attachments": [{"name": "cURL", "source": "3e2b3bc5-c94f-4857-a1db-10a7b3575706-attachment.txt", "type": "text/plain"}], "start": 1775346856385, "stop": 1775346856385}, {"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": "4badd42c-9fe9-48ee-8fbf-3b31a7558f2b-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "1f50c1ff-189f-4aeb-bfba-6a9ecdebef36-attachment.json", "type": "application/json"}], "start": 1775346856452, "stop": 1775346856453}, {"name": "Response → 200, trace_id: e70306846a11d11543ce2027df260b5e", "status": "passed", "attachments": [{"name": "response.headers", "source": "eb8d636a-82f6-4dbe-a9ef-ba27dee8c9e6-attachment.json", "type": "application/json"}], "start": 1775346856453, "stop": 1775346856453}], "attachments": [{"name": "cURL", "source": "aa827417-1c84-40e8-9709-2f454805ad77-attachment.txt", "type": "text/plain"}], "start": 1775346856452, "stop": 1775346856453}, {"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": "6e6115fc-945b-405c-9c63-18927f93a337-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "b2ca9acc-17eb-46d7-b5ac-43d447d4d625-attachment.json", "type": "application/json"}], "start": 1775346856521, "stop": 1775346856521}, {"name": "Response → 200, trace_id: 897711506e62b02a62b280ea00b9046c", "status": "passed", "attachments": [{"name": "response.headers", "source": "5e55b776-d784-479b-834f-1b1c349bf588-attachment.json", "type": "application/json"}], "start": 1775346856521, "stop": 1775346856521}], "attachments": [{"name": "cURL", "source": "328804a5-bd15-4f75-b17c-eda50cd86146-attachment.txt", "type": "text/plain"}], "start": 1775346856521, "stop": 1775346856521}, {"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": "6042c89e-983f-41dd-bc50-fe4fd56a84b4-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "5c87acb1-3069-4501-85a5-b3600c31e0d4-attachment.json", "type": "application/json"}], "start": 1775346856588, "stop": 1775346856588}, {"name": "Response → 200, trace_id: cac2446705cfb593767b59b48d037f60", "status": "passed", "attachments": [{"name": "response.headers", "source": "aa2c02f5-645a-481f-9aeb-1ab88ae4e6b8-attachment.json", "type": "application/json"}], "start": 1775346856588, "stop": 1775346856588}], "attachments": [{"name": "cURL", "source": "eb91c67a-bc3a-4fd7-b731-127462e1beb1-attachment.txt", "type": "text/plain"}], "start": 1775346856587, "stop": 1775346856588}, {"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": "1a621de5-00f0-4e22-bc7f-3ef1216330ae-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "904a74cb-da29-4ef5-a07d-526b850c97e4-attachment.json", "type": "application/json"}], "start": 1775346856655, "stop": 1775346856655}, {"name": "Response → 200, trace_id: 0f103f9721bb289874f37f32de0491f9", "status": "passed", "attachments": [{"name": "response.headers", "source": "51c049b5-837f-4c49-9d4a-a5bf40e0f1b3-attachment.json", "type": "application/json"}], "start": 1775346856655, "stop": 1775346856655}], "attachments": [{"name": "cURL", "source": "cc996efe-a3b0-496c-a096-fbc281079df0-attachment.txt", "type": "text/plain"}], "start": 1775346856655, "stop": 1775346856655}, {"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": "02f8b3f4-b9e2-4dbe-91b5-0a7e8c525650-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "d7da577e-b6d8-4518-b5ac-6b961878d21d-attachment.json", "type": "application/json"}], "start": 1775346856720, "stop": 1775346856720}, {"name": "Response → 200, trace_id: ad2dfd1ad124e70b4f0fa87e04ecdaf8", "status": "passed", "attachments": [{"name": "response.headers", "source": "79c773e7-9f7b-4b5e-a81b-f99e4a8241a1-attachment.json", "type": "application/json"}], "start": 1775346856720, "stop": 1775346856720}], "attachments": [{"name": "cURL", "source": "e058bad0-e9d9-462f-a44d-d98d04ab368f-attachment.txt", "type": "text/plain"}], "start": 1775346856720, "stop": 1775346856720}, {"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": "ac393de5-cd09-4388-963d-dc79f6cd2868-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "af5ebc04-cfe8-4e90-84e0-b34702212505-attachment.json", "type": "application/json"}], "start": 1775346856753, "stop": 1775346856753}, {"name": "Response → 200, trace_id: 9272e86d2c86da0ff368b9476247eaf0", "status": "passed", "attachments": [{"name": "response.headers", "source": "d2c63aa0-aea4-4d0e-8cce-c1b9c1b85261-attachment.json", "type": "application/json"}], "start": 1775346856753, "stop": 1775346856753}], "attachments": [{"name": "cURL", "source": "e30ec88f-ada2-407b-b399-99d521498d70-attachment.txt", "type": "text/plain"}], "start": 1775346856753, "stop": 1775346856753}, {"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": "abf3af40-a03b-4b78-86e8-f037e93c5b3f-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "8abb7ae3-3a25-457f-b02b-e556459db5a7-attachment.json", "type": "application/json"}], "start": 1775346857535, "stop": 1775346857535}, {"name": "Response → 200, trace_id: 35068518116867d761a713a74f8bfa5e", "status": "passed", "attachments": [{"name": "response.headers", "source": "7cdea95d-f5de-4f83-a119-713245fbd7f8-attachment.json", "type": "application/json"}], "start": 1775346857535, "stop": 1775346857535}], "attachments": [{"name": "cURL", "source": "f7b4f493-3361-4224-9de6-e0b3a1f69d69-attachment.txt", "type": "text/plain"}], "start": 1775346857535, "stop": 1775346857535}, {"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": "3feba612-5c2c-463a-9c8b-7a62285cb428-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "a4cef41c-6e42-40d5-b298-d81b4d95eb68-attachment.json", "type": "application/json"}], "start": 1775346857617, "stop": 1775346857618}, {"name": "Response → 200, trace_id: 9fe2ff289d8385baeb92a857452929c9", "status": "passed", "attachments": [{"name": "response.headers", "source": "180dbe71-d647-4a69-a1ae-32aedd6076df-attachment.json", "type": "application/json"}], "start": 1775346857618, "stop": 1775346857618}], "attachments": [{"name": "cURL", "source": "a9037763-8613-48b8-86e2-ace5a1e8b9f9-attachment.txt", "type": "text/plain"}], "start": 1775346857617, "stop": 1775346857618}, {"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": "6b818c58-2d49-4a12-82ec-336ba3ad542f-attachment.txt", "type": "text/plain"}], "start": 1775346857625, "stop": 1775346857625}], "start": 1775346857620, "stop": 1775346857625}, {"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": "b99b8ffe-3f27-472b-b65b-b77acfbb4f3c-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "88375ddc-3a1d-4b3a-86a1-58bdda0e57a1-attachment.json", "type": "application/json"}], "start": 1775346857638, "stop": 1775346857638}], "start": 1775346857625, "stop": 1775346857638}, {"name": "GET → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoice/7534684964/items", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "96f79679-f25b-4ec1-90d4-8156b950fa80-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "9c635e2e-2a33-4d7d-af85-695f277c52f6-attachment.json", "type": "application/json"}], "start": 1775346857677, "stop": 1775346857677}, {"name": "Response → 200, trace_id: c7429bad1321d2c4e6a88aa35f037b3e", "status": "passed", "attachments": [{"name": "response.headers", "source": "90756254-9025-4e09-9a0f-1b7ae4d69bc9-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "11dbd949-c657-437c-95b7-8aff05c349d3-attachment.json", "type": "application/json"}], "start": 1775346857677, "stop": 1775346857678}], "attachments": [{"name": "cURL", "source": "58dcd0ab-1aa0-4486-9282-fc07941afe54-attachment.txt", "type": "text/plain"}], "start": 1775346857677, "stop": 1775346857678}, {"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": "2bbbacb2-f6fd-485c-9a6e-f8590b70c62b-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "a06f9d21-5403-4713-a0d6-1714c7c5cd1f-attachment.json", "type": "application/json"}], "start": 1775346857702, "stop": 1775346857702}, {"name": "Response → 200, trace_id: 69813466a1dbc9e2ebd18a39d8c5c2f2", "status": "passed", "attachments": [{"name": "response.headers", "source": "334173e2-30c2-47fa-b0e2-c4fbb43bbdc4-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "597ecc1c-eaf0-458b-99fd-f3143f41fcd0-attachment.json", "type": "application/json"}], "start": 1775346857702, "stop": 1775346857702}], "attachments": [{"name": "cURL", "source": "d369fc5c-3d61-4bd3-9955-4533423a0c80-attachment.txt", "type": "text/plain"}], "start": 1775346857702, "stop": 1775346857702}, {"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": "6b0b19e4-3c71-4cbd-84cf-b03a6b249fbd-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "80413a5f-97d4-4bab-a230-fd8a4479a3d2-attachment.json", "type": "application/json"}], "start": 1775346857745, "stop": 1775346857745}, {"name": "Response → 200, trace_id: 3ad0c12eeead129103f2c252e3d01635", "status": "passed", "attachments": [{"name": "response.headers", "source": "3081c9e0-d3fe-4093-a079-e24beb4b1188-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "ba289895-1e96-4987-8021-63bd5ca48dc7-attachment.json", "type": "application/json"}], "start": 1775346857745, "stop": 1775346857746}], "attachments": [{"name": "cURL", "source": "7b874e48-3db1-4c2a-a249-407015eb728c-attachment.txt", "type": "text/plain"}], "start": 1775346857745, "stop": 1775346857746}], "start": 1775346852350, "stop": 1775346857749}, {"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": "058411a3-6e22-4085-a6df-dda0a5480f65-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "5c7d15fb-1fb4-40a1-9c86-ebbf7c9810c2-attachment.json", "type": "application/json"}], "start": 1775346857754, "stop": 1775346857754}], "start": 1775346857749, "stop": 1775346857754}, {"name": "POST → https://dm-wms-be-service-acceptance.k8s-review.dailymail-tech.uz/invoices/send-to-declaration?invoice_ids=7534684964", "status": "passed", "steps": [{"name": "Request", "status": "passed", "attachments": [{"name": "request.headers", "source": "ec829130-0ebe-4381-844d-9ddb0cb8ecdb-attachment.json", "type": "application/json"}, {"name": "request.params", "source": "1914dbf0-93bd-42f4-a9e8-52183d8a73d9-attachment.json", "type": "application/json"}], "start": 1775346857791, "stop": 1775346857791}, {"name": "Response → 200, trace_id: 72a623ecced911217a731e6e900ca813", "status": "passed", "attachments": [{"name": "response.headers", "source": "a3dbb912-d942-49bd-a805-3aeb81dd6a6b-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "5693f227-e595-4dc2-8725-7f82722b4dd3-attachment.json", "type": "application/json"}], "start": 1775346857791, "stop": 1775346857791}], "attachments": [{"name": "cURL", "source": "59eb975d-91c2-483c-9725-22b484321d96-attachment.txt", "type": "text/plain"}], "start": 1775346857791, "stop": 1775346857791}, {"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": "d596ee18-8c7a-4003-b028-28dbeee58ba5-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "ed8e2eff-e879-44a1-be16-4339987ebac3-attachment.json", "type": "application/json"}], "start": 1775346857798, "stop": 1775346857798}], "start": 1775346857794, "stop": 1775346857798}, {"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": "6af89122-c005-42f1-845c-7d440da793fd-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "c60ce27a-acd4-4ae5-bd90-767fa2dddc09-attachment.json", "type": "application/json"}], "start": 1775346857809, "stop": 1775346857809}], "start": 1775346857799, "stop": 1775346857810}, {"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": "5c8becc1-da96-49bd-9be3-ce69bdf7ed14-attachment.json", "type": "application/json"}, {"name": "request.body", "source": "c8d3e46b-759b-480c-a886-3971ee66079c-attachment.json", "type": "application/json"}], "start": 1775346857877, "stop": 1775346857877}, {"name": "Response → 200, trace_id: 72161f31a06842bf54e26d7aa5239e6a", "status": "passed", "attachments": [{"name": "response.headers", "source": "c347b4fc-48c3-42b9-b348-d1430d92d6f8-attachment.json", "type": "application/json"}, {"name": "response.body", "source": "8d02388d-f592-4b60-b4b9-a4b47a12807d-attachment.json", "type": "application/json"}], "start": 1775346857877, "stop": 1775346857877}], "attachments": [{"name": "cURL", "source": "d5781a2b-5a95-4059-b56c-520748c73299-attachment.txt", "type": "text/plain"}], "start": 1775346857877, "stop": 1775346857877}, {"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": "942c9908-27e3-4522-bd45-5cbf9e2ff0c7-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "6f6bded9-9b4f-4b08-8f6b-22e91031a141-attachment.json", "type": "application/json"}], "start": 1775346857885, "stop": 1775346857885}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "437db890-37c8-4120-a60d-3536d75db1fd-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "ec365d79-d810-49a1-8124-a38dafba9d5c-attachment.json", "type": "application/json"}], "start": 1775346877900, "stop": 1775346877900}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "74a06535-27fa-448a-8f56-3d853b045dfe-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "d42da055-0520-4479-a032-d2da489ab8f9-attachment.json", "type": "application/json"}], "start": 1775346897906, "stop": 1775346897906}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "e22c534b-301f-416c-85b5-c6137b334722-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "60fe89a8-5aa7-4434-9eaf-bd7ff687c5a7-attachment.json", "type": "application/json"}], "start": 1775346917922, "stop": 1775346917922}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "a2825bae-30e1-4a06-91c9-251f65512739-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "1f8a2f03-d876-4da8-ae14-87ee2f390324-attachment.json", "type": "application/json"}], "start": 1775346937937, "stop": 1775346937937}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "17636911-8768-4f11-b564-ee01257744d3-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "b46b4666-a9cb-4484-9576-d5358bcfbdc4-attachment.json", "type": "application/json"}], "start": 1775346957951, "stop": 1775346957951}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "79544d35-db24-46d2-b013-c985c057327f-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "19293505-27c5-4c26-8e4c-2af5d4330d53-attachment.json", "type": "application/json"}], "start": 1775346977965, "stop": 1775346977965}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "a8a9a2b2-713f-46f2-ae2a-d825db5ccb4d-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "af1e4b7b-bbeb-4e33-8053-0b59274d7730-attachment.json", "type": "application/json"}], "start": 1775346997971, "stop": 1775346997971}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "c1a080d9-e372-41ef-8f0d-0a2dcb43bc45-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "c871e01d-d99d-4fde-a0d2-ccc5d4ba154c-attachment.json", "type": "application/json"}], "start": 1775347017985, "stop": 1775347017985}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "2e0686fb-f5b3-4048-87b7-35a47034e302-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "99cebd05-30db-4a18-a6df-9bdd1e82ce8e-attachment.json", "type": "application/json"}], "start": 1775347037999, "stop": 1775347037999}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "4a2afdc3-34ec-4102-902c-79e5032331d3-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "50931a16-4118-4afd-ae4f-b6480182dc5f-attachment.json", "type": "application/json"}], "start": 1775347058005, "stop": 1775347058005}, {"name": "db.request SQLAlchemy query SELECT → dm_wms_be_service_acceptance ", "status": "passed", "attachments": [{"name": "query", "source": "380f4d89-6c43-499f-b394-eeb576ee281b-attachment.txt", "type": "text/plain"}, {"name": "result", "source": "db3a2bff-91d7-4866-9fc5-93e65c8ea3c6-attachment.json", "type": "application/json"}], "start": 1775347078019, "stop": 1775347078019}], "start": 1775346857880, "stop": 1775347128021}], "start": 1775346857749, "stop": 1775347128024}], "attachments": [{"name": "log", "source": "2c67fc9f-7b71-42ff-a7eb-e8157b9aca1c-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=100082, phone='1000100082', role_wms_id=23, zone_id=None, patronymic='autotest UZ', last_name='Lancer', password='1234', first_name='Phantom', token='876be49a-bd4c-4bcf-a5f5-b3f483e51a1a', 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 0x752971573e50>, 'count_types': {'proper': True, 'defected': False, 'overage': False, 'zero': False}}"}, {"name": "params", "value": "{'sku_amount': 3, 'barcode_count': 5, 'quantity': 4}"}], "start": 1775346849389, "stop": 1775347128025, "uuid": "eed0dfed-32db-41de-9a68-749f8bde6e8c", "historyId": "f489bf20bd280f2caf74ead21c2f3ddc", "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-j6yh7vn1"}, {"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"]}