Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flamenco-worker-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
flamenco-worker-python
Commits
3399843a
Commit
3399843a
authored
8 years ago
by
Sybren A. Stüvel
Browse files
Options
Downloads
Patches
Plain Diff
Worker: moved scheduling of fetch_task() to startup()
parent
15a4ae4c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/flamenco-worker-python/flamenco_worker/worker.py
+2
-1
2 additions, 1 deletion
packages/flamenco-worker-python/flamenco_worker/worker.py
with
2 additions
and
1 deletion
packages/flamenco-worker-python/flamenco_worker/worker.py
+
2
−
1
View file @
3399843a
...
@@ -35,6 +35,8 @@ class FlamencoWorker:
...
@@ -35,6 +35,8 @@ class FlamencoWorker:
if
not
self
.
worker_id
or
not
self
.
worker_secret
:
if
not
self
.
worker_id
or
not
self
.
worker_secret
:
self
.
register_at_manager
()
self
.
register_at_manager
()
self
.
schedule_fetch_task
()
def
register_at_manager
(
self
):
def
register_at_manager
(
self
):
self
.
_log
.
info
(
'
Registering at manager
'
)
self
.
_log
.
info
(
'
Registering at manager
'
)
...
@@ -70,7 +72,6 @@ class FlamencoWorker:
...
@@ -70,7 +72,6 @@ class FlamencoWorker:
# TODO: add "watchdog" task that checks the asyncio loop and ensures there is
# TODO: add "watchdog" task that checks the asyncio loop and ensures there is
# always either a task being executed or a task fetch scheduled.
# always either a task being executed or a task fetch scheduled.
self
.
schedule_fetch_task
()
self
.
loop
.
run_forever
()
self
.
loop
.
run_forever
()
def
schedule_fetch_task
(
self
,
delay
=
0
):
def
schedule_fetch_task
(
self
,
delay
=
0
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment