Skip to content

Commit

Permalink
Merge pull request #229 from JaerongA/sciviz
Browse files Browse the repository at this point in the history
fix: 🐛 bug fix in configured_workers
  • Loading branch information
Thinh Nguyen authored Aug 16, 2023
2 parents b29f0c3 + 2be5e2b commit 4b1272b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aeon/dj_pipeline/populate/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@
"""

import sys

import datajoint as dj
from datajoint_utilities.dj_worker import parse_args

from aeon.dj_pipeline.populate.worker import (
acquisition_worker,
logger,
mid_priority,
streams_worker,
logger,
)


# ---- some wrappers to support execution as script or CLI

configured_workers = {
"high_priority": acquisition_worker,
"acquisition_worker": acquisition_worker,
"mid_priority": mid_priority,
"streams_worker": streams_worker,
}
Expand Down

0 comments on commit 4b1272b

Please sign in to comment.