Created
January 19, 2022 09:09
-
-
Save chaporgin/de2962c2cfed58fab2399b0a265c562e to your computer and use it in GitHub Desktop.
chapson quick paste
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| api_client = Client(base_url='http://localhost:3000/api/v1', cookies=<RequestsCookieJar[Cookie(version=0, name='zenith', value='MTY...67, discard=False, comment=None, comment_url=None, rest={}, rfc2109=False)]>, headers={}, timeout=5.0, verify_ssl=True) | |
| @pytest.mark.timeout(120) | |
| def test_run_query_on_a_cluster(api_client): | |
| resp = post_clusters.sync_detailed( | |
| client=api_client, | |
| json_body=ClusterStub.from_dict( | |
| { | |
| "cluster": { | |
| "name": "default_cluster", | |
| "platform_id": "docker", | |
| "region_id": "laptop", | |
| "instance_type_id": "d.container_micro", | |
| "settings": {}, | |
| }, | |
| } | |
| ), | |
| ) | |
| assert resp.status_code == 201 | |
| cluster = resp.parsed | |
| assert cluster.name == cluster.id | |
| assert len(cluster.roles) == 1 | |
| assert cluster.roles[0].password is not None | |
| role_password = cluster.roles[0].password | |
| _wait_cluster_active(api_client, cluster.id) | |
| databases = get_cluster_databases.sync(cluster.id, client=api_client) | |
| assert isinstance(databases, list) and len(databases) > 0 | |
| > resp = run_cluster_query.sync( | |
| cluster.id, | |
| client=api_client, | |
| json_body=QueryReq.from_dict( | |
| { | |
| "db_id": databases[0].id, | |
| "password": role_password, | |
| "query": "select 123", | |
| } | |
| ), | |
| ) | |
| tests/test_cluster_creation.py:61: | |
| _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ | |
| api-v1-client/api_v1_client/api/cluster/run_cluster_query.py:95: in sync | |
| return sync_detailed( | |
| api-v1-client/api_v1_client/api/cluster/run_cluster_query.py:79: in sync_detailed | |
| response = httpx.post( | |
| ../../../../Library/Caches/pypoetry/virtualenvs/tests-e2e-1x4Hbp1T-py3.9/lib/python3.9/site-packages/httpx/_api.py:304: in post | |
| return request( | |
| ../../../../Library/Caches/pypoetry/virtualenvs/tests-e2e-1x4Hbp1T-py3.9/lib/python3.9/site-packages/httpx/_api.py:100: in request | |
| return client.request( | |
| ../../../../Library/Caches/pypoetry/virtualenvs/tests-e2e-1x4Hbp1T-py3.9/lib/python3.9/site-packages/httpx/_client.py:785: in request | |
| return self.send( | |
| ../../../../Library/Caches/pypoetry/virtualenvs/tests-e2e-1x4Hbp1T-py3.9/lib/python3.9/site-packages/httpx/_client.py:871: in send | |
| response = self._send_handling_auth( | |
| ../../../../Library/Caches/pypoetry/virtualenvs/tests-e2e-1x4Hbp1T-py3.9/lib/python3.9/site-packages/httpx/_client.py:907: in _send_handling_auth | |
| response = self._send_handling_redirects( | |
| ../../../../Library/Caches/pypoetry/virtualenvs/tests-e2e-1x4Hbp1T-py3.9/lib/python3.9/site-packages/httpx/_client.py:943: in _send_handling_redirects | |
| response = self._send_single_request(request, timeout) | |
| ../../../../Library/Caches/pypoetry/virtualenvs/tests-e2e-1x4Hbp1T-py3.9/lib/python3.9/site-packages/httpx/_client.py:977: in _send_single_request | |
| (status_code, headers, stream, extensions) = transport.handle_request( | |
| ../../../../Library/Caches/pypoetry/virtualenvs/tests-e2e-1x4Hbp1T-py3.9/lib/python3.9/site-packages/httpx/_transports/default.py:181: in handle_request | |
| status_code, headers, byte_stream, extensions = self._pool.handle_request( | |
| /opt/homebrew/Cellar/python@3.9/3.9.10/Frameworks/Python.framework/Versions/3.9/lib/python3.9/contextlib.py:137: in __exit__ | |
| self.gen.throw(typ, value, traceback) | |
| _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ | |
| @contextlib.contextmanager | |
| def map_httpcore_exceptions() -> typing.Iterator[None]: | |
| try: | |
| yield | |
| except Exception as exc: | |
| mapped_exc = None | |
| for from_exc, to_exc in HTTPCORE_EXC_MAP.items(): | |
| if not isinstance(exc, from_exc): | |
| continue | |
| # We want to map to the most specific exception we can find. | |
| # Eg if `exc` is an `httpcore.ReadTimeout`, we want to map to | |
| # `httpx.ReadTimeout`, not just `httpx.TimeoutException`. | |
| if mapped_exc is None or issubclass(to_exc, mapped_exc): | |
| mapped_exc = to_exc | |
| if mapped_exc is None: # pragma: nocover | |
| raise | |
| message = str(exc) | |
| > raise mapped_exc(message) from exc | |
| E httpx.ReadTimeout: timed out | |
| ../../../../Library/Caches/pypoetry/virtualenvs/tests-e2e-1x4Hbp1T-py3.9/lib/python3.9/site-packages/httpx/_transports/default.py:78: ReadTimeout | |
| --------------------------------------------------- Captured log call ---------------------------------------------------- | |
| 2022-01-19 12:06:07 DEBUG HTTP Request: POST http://localhost:3000/api/v1/clusters "HTTP/1.1 201 Created" | |
| 2022-01-19 12:06:07 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:07 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:07 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:08 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:08 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:08 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:09 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:09 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:09 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:10 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:10 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:10 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:11 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:11 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:11 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:12 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:12 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:12 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:13 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:13 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:13 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:14 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:14 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:14 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:15 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:15 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:16 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:16 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:16 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:17 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:17 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:17 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:18 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:18 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:18 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:19 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:19 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:19 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:20 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:20 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:20 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:21 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:21 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:21 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:22 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:22 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:22 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:23 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:23 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:23 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:24 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:24 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:24 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:25 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:25 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:25 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:26 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:26 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:26 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:27 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:27 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:27 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:28 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:28 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:28 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:29 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:29 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:30 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:30 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:30 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:31 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:31 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:31 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:32 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:32 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:32 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:33 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:33 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:33 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:34 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:34 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:34 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:35 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:35 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:35 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:36 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:36 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:36 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:37 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:37 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:37 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:38 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:38 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:38 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:39 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:39 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:39 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:40 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:40 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:40 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:41 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:41 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:41 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:42 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:42 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:42 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:43 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:43 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:43 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:44 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:44 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:44 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:45 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:45 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:45 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:46 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:46 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:46 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:47 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:47 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:47 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:48 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:48 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:48 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:49 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:49 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:49 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:50 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:50 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:50 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:51 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:51 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:52 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:52 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:52 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:53 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:53 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:53 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:54 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:54 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:54 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:55 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:55 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:55 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:56 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:56 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:56 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:57 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:57 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:57 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:58 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:58 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:58 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:59 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:59 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:06:59 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:00 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:00 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:00 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:01 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:01 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:01 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:02 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:02 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:02 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:03 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:03 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:03 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:04 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:04 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:05 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:05 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:05 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:06 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:06 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:06 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:07 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:07 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:07 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:08 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:08 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:08 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:09 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:09 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:09 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:10 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:10 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:10 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:11 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:11 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:11 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:12 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:12 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:12 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:13 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:13 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:13 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:14 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:14 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:14 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:15 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:15 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:15 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:16 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:16 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:16 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:17 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:17 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:17 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:18 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:18 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:18 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:19 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:19 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:19 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:20 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:20 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:20 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:21 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:21 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:21 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:22 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:22 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:22 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:23 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:23 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:23 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:24 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:24 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:24 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:25 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:25 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:25 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:26 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:26 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:26 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:27 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:27 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:27 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:28 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:28 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:28 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:29 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:29 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:29 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:30 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:30 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:30 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:31 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:31 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:31 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:32 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:32 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:32 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:33 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:33 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:33 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:34 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:34 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:34 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:35 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:35 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:35 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:36 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:36 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:36 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:37 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:37 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:37 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:38 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:38 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:38 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:39 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:39 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:39 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:40 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:40 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:40 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:41 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:41 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:41 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:42 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:42 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:42 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:43 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:43 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:44 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:44 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:44 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:45 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:45 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:45 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:46 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:46 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:46 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:47 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:47 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:47 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:48 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:48 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:48 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:49 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:49 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:50 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:50 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645 "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:50 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters/purple-wood-988645/databases "HTTP/1.1 200 OK" | |
| ------------------------------------------------- Captured log teardown -------------------------------------------------- | |
| 2022-01-19 12:07:55 DEBUG HTTP Request: GET http://localhost:3000/api/v1/clusters "HTTP/1.1 200 OK" | |
| 2022-01-19 12:07:55 DEBUG HTTP Request: POST http://localhost:3000/api/v1/clusters/purple-wood-988645/delete "HTTP/1.1 200 OK" | |
| ================================================ short test summary info ================================================= | |
| FAILED tests/test_cluster_creation.py::test_run_query_on_a_cluster - httpx.ReadTimeout: timed out | |
| ======================================== 1 failed, 1 passed in 108.91s (0:01:48) ========================================= | |
| make: *** [test] Error 1 | |
| m ~/D/z/c/tests_e2e |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment