Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable concurrent processing #24

Merged
merged 1 commit into from
Aug 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion rt_eqcorrscan/rt_match_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class RealTimeTribe(Tribe):
_backfill_tribe = Tribe() # Tribe of as-yet unused templates for backfilling
_last_backfill_start = UTCDateTime.now() # Time of last backfill run - update on run
_number_of_backfillers = 0 # Book-keeping of backfiller processes.
_clean_backfillers = False # If false will leave temporary backfiller dirs
_clean_backfillers = True # If false will leave temporary backfiller dirs

busy = False

Expand Down Expand Up @@ -875,6 +875,7 @@ def run(
process_cores=self.process_cores,
parallel_process=self._parallel_processing,
ignore_bad_data=True, copy_data=False,
concurrent_processing=False,
**kwargs)
Logger.info("Completed detection")
except Exception as e: # pragma: no cover
Expand Down
Loading