We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c79719 commit 2aadf79Copy full SHA for 2aadf79
tests/integration/conftest.py
@@ -271,7 +271,8 @@ def uuid_create(
271
response = flask_client.post("/create/results", data=params, follow_redirects=True)
272
273
url_parts = response.request.path.rsplit("/")
274
- uuid = url_parts[-1]
+ uuid = url_parts[-2]
275
+ UUID(uuid) # validate uuid
276
277
task = celery_app.AsyncResult(uuid)
278
result = task.get(timeout=180)
@@ -360,6 +361,7 @@ def uuid_digitize(
360
361
# Extract UUID from response
362
363
uuid = url_parts[-1]
364
365
366
# Wait for tasks to be finished and retrieve results (vector and raster)
367
result = celery_app.GroupResult.restore(uuid).get(timeout=180)
0 commit comments