Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Ishabdullah/Codey-v2
/ mark_running
Method
mark_running
core/taskqueue.py:49–54 ·
view source on GitHub ↗
(self, task_id)
Source
from the content-addressed store, hash-verified
47
return
None
48
49
def
mark_running(self, task_id):
50
for
t in self.tasks:
51
if
t.id == task_id:
52
t.status = STATUS_RUNNING
53
break
54
self.save()
55
56
def
mark_done(self, task_id, result=
''
):
57
for
t in self.tasks:
Callers
1
run_queue
Function · 0.80
Calls
1
save
Method · 0.95
Tested by
no test coverage detected