wmill 1.408.1__tar.gz → 1.409.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {wmill-1.408.1 → wmill-1.409.1}/PKG-INFO +1 -1
- {wmill-1.408.1 → wmill-1.409.1}/pyproject.toml +1 -1
- {wmill-1.408.1 → wmill-1.409.1}/wmill/client.py +1 -4
- {wmill-1.408.1 → wmill-1.409.1}/README.md +0 -0
- {wmill-1.408.1 → wmill-1.409.1}/wmill/__init__.py +0 -0
- {wmill-1.408.1 → wmill-1.409.1}/wmill/py.typed +0 -0
- {wmill-1.408.1 → wmill-1.409.1}/wmill/s3_reader.py +0 -0
- {wmill-1.408.1 → wmill-1.409.1}/wmill/s3_types.py +0 -0
@@ -257,10 +257,7 @@ class Windmill:
|
|
257
257
|
assert job_type, f"{job} is not a valid job"
|
258
258
|
if job_type.lower() == "completedjob":
|
259
259
|
return "COMPLETED"
|
260
|
-
|
261
|
-
if "running" not in additional_properties:
|
262
|
-
raise Exception(f"{job_id} is not running")
|
263
|
-
if additional_properties.get("running"):
|
260
|
+
if job.get("running"):
|
264
261
|
return "RUNNING"
|
265
262
|
return "WAITING"
|
266
263
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|