Skip to content

Commit 4224aa9

Browse files
committed
cleanup job-status if thread stopped
1 parent fb74490 commit 4224aa9

File tree

8 files changed

+30
-18
lines changed

8 files changed

+30
-18
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## Version 0
44

5+
### 0.0.25
6+
7+
* Handle edge-case error of schedule
8+
* Handle jobs without credentials
9+
* Cleanup execution status if thread stopped
10+
11+
----
12+
513
### 0.0.24-3
614

715
* Disable data-refresh if in background

src/ansibleguy-webui/aw/execute/play.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def _cancel_job() -> bool:
6363
runner_cleanup(execution=execution, path_run=path_run, exec_repo=exec_repo)
6464
Alert(job=job, execution=execution).go()
6565

66-
except (OSError, AnsibleConfigError) as err:
66+
except (OSError, AnsibleConfigError, ValueError, AttributeError, IndexError, KeyError) as err:
6767
tb = traceback.format_exc(limit=1024)
6868
failure(
6969
execution=execution, exec_repo=exec_repo, path_run=path_run, result=result,

src/ansibleguy-webui/aw/execute/play_util.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
from aw.utils.debug import log
2222
from aw.execute.repository import ExecuteRepository
2323
from aw.execute.play_credentials import get_runner_credential_args, get_credentials_to_use
24+
from aw.model.base import JOB_EXEC_STATUS_FAILED
2425

2526
# see: https://ansible.readthedocs.io/projects/runner/en/latest/intro/
2627

@@ -263,7 +264,7 @@ def parse_run_result(execution: JobExecution, result: JobExecutionResult, runner
263264
any_task_failed = _run_stats(runner=runner, result=result)
264265

265266
if runner.errored or runner.timed_out or runner.rc != 0 or any_task_failed:
266-
update_status(execution, status='Failed')
267+
update_status(execution, status=JOB_EXEC_STATUS_FAILED)
267268

268269
else:
269270
status = 'Finished'
@@ -277,7 +278,7 @@ def failure(
277278
execution: JobExecution, exec_repo: ExecuteRepository, path_run: Path,
278279
result: JobExecutionResult, error_s: str, error_m: str
279280
):
280-
update_status(execution, status='Failed')
281+
update_status(execution, status=JOB_EXEC_STATUS_FAILED)
281282
job_error = JobError(
282283
short=error_s,
283284
med=error_m,

src/ansibleguy-webui/aw/execute/repository.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
from aw.utils.handlers import AnsibleRepositoryError
1515
from aw.model.repository import Repository
1616
from aw.base import USERS
17+
from aw.model.base import JOB_EXEC_STATUS_FAILED
1718

1819

1920
class ExecuteRepository:
@@ -113,7 +114,7 @@ def create_or_update_repository(self):
113114

114115
def _error(self, msg: str):
115116
write_file_0640(file=self.repository.log_stderr, content=msg)
116-
update_status(self.repository, status='Failed')
117+
update_status(self.repository, status=JOB_EXEC_STATUS_FAILED)
117118
raise AnsibleRepositoryError(msg).with_traceback(None) from None
118119

119120
def get_path_run_repo(self) -> Path:

src/ansibleguy-webui/aw/execute/threader.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@
1111
from aw.execute.play import ansible_playbook
1212
from aw.utils.handlers import AnsibleConfigError, AnsibleRepositoryError
1313
from aw.utils.util import get_next_cron_execution_sec, get_next_cron_execution_str, is_set
14+
from aw.execute.util import update_status
15+
from aw.model.base import JOB_EXEC_STATUS_ACTIVE, JOB_EXEC_STATUS_FAILED
1416

1517

1618
class Workload(Thread):
1719
FAIL_SLEEP = 5
1820
MAX_CONFIG_INVALID = 3
1921

20-
def __init__(self, job: Job, manager, name: str, execution: JobExecution, once: bool = False, daemon: bool = True):
22+
def __init__(self, job: Job, manager, name: str, execution: (JobExecution, None), once: bool = False, daemon: bool = True):
2123
Thread.__init__(self, daemon=daemon, name=name)
2224
self.job = job
2325
self.execution = execution
@@ -44,6 +46,9 @@ def stop(self) -> bool:
4446
# 'cannot join current thread'
4547
pass
4648

49+
if self.execution is not None and self.execution.status in JOB_EXEC_STATUS_ACTIVE:
50+
update_status(self.execution, status=JOB_EXEC_STATUS_FAILED)
51+
4752
log(f"Stopped thread {self.log_name_debug}", level=4)
4853
self.started = False
4954
self.stopped = True

src/ansibleguy-webui/aw/execute/util.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,11 @@ def decode_job_env_vars(env_vars_csv: str, src: str) -> dict:
5050
return {}
5151

5252

53-
def update_status(obj: (JobExecution, Repository), status: str):
54-
obj.status = obj.status_id_from_name(status)
53+
def update_status(obj: (JobExecution, Repository), status: (str, int)):
54+
if isinstance(status, str):
55+
status = obj.status_id_from_name(status)
56+
57+
obj.status = status
5558
obj.save()
5659

5760

src/ansibleguy-webui/aw/model/base.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,17 @@
66
)
77
DEFAULT_NONE = {'null': True, 'default': None, 'blank': True}
88
JOB_EXEC_STATUS_SUCCESS = 4
9+
JOB_EXEC_STATUS_FAILED = 3
910
CHOICES_JOB_EXEC_STATUS = [
1011
(0, 'Waiting'),
1112
(1, 'Starting'),
1213
(2, 'Running'),
13-
(3, 'Failed'),
14+
(JOB_EXEC_STATUS_FAILED, 'Failed'),
1415
(JOB_EXEC_STATUS_SUCCESS, 'Finished'),
1516
(5, 'Stopping'),
1617
(6, 'Stopped'),
1718
]
19+
JOB_EXEC_STATUS_ACTIVE = [0, 1, 2, 5]
1820

1921

2022
class BareModel(models.Model):

src/ansibleguy-webui/db.py

+2-10
Original file line numberDiff line numberDiff line change
@@ -223,15 +223,7 @@ def create_manager_groups():
223223

224224

225225
def cleanup_job_stati():
226-
from aw.model.base import CHOICES_JOB_EXEC_STATUS
226+
from aw.model.base import JOB_EXEC_STATUS_ACTIVE, JOB_EXEC_STATUS_FAILED
227227
from aw.model.job import JobExecution
228-
from aw.utils.util import get_choice_key_by_value
229228

230-
bad_stati = [
231-
get_choice_key_by_value(choices=CHOICES_JOB_EXEC_STATUS, find='Waiting'),
232-
get_choice_key_by_value(choices=CHOICES_JOB_EXEC_STATUS, find='Running'),
233-
get_choice_key_by_value(choices=CHOICES_JOB_EXEC_STATUS, find='Stopping'),
234-
]
235-
set_status = get_choice_key_by_value(choices=CHOICES_JOB_EXEC_STATUS, find='Failed')
236-
237-
JobExecution.objects.filter(status__in=bad_stati).update(status=set_status)
229+
JobExecution.objects.filter(status__in=JOB_EXEC_STATUS_ACTIVE).update(status=JOB_EXEC_STATUS_FAILED)

0 commit comments

Comments
 (0)