Skip to content

Commit

Permalink
Merge pull request #270 from JaerongA/datajoint_pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ttngu207 authored Oct 31, 2023
2 parents a6c4f50 + 13b6ae2 commit af44531
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aeon/dj_pipeline/populate/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@
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
from aeon.dj_pipeline.populate.worker import acquisition_worker, logger, mid_priority, streams_worker, pyrat_worker

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

configured_workers = {
"acquisition_worker": acquisition_worker,
"mid_priority": mid_priority,
"streams_worker": streams_worker,
"pyrat_worker": pyrat_worker,
}


Expand Down
1 change: 1 addition & 0 deletions aeon/dj_pipeline/populate/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
__all__ = [
"acquisition_worker",
"mid_priority",
"pyrat_worker",
"streams_worker",
"WorkerLog",
"ErrorLog",
Expand Down

0 comments on commit af44531

Please sign in to comment.