Skip to content

Commit

Permalink
[ingest] Removes agari and ingest_runner.py
Browse files Browse the repository at this point in the history
this was deprecated by data connectors awhile ago
  • Loading branch information
sfc-gh-afedorov committed Sep 12, 2020
1 parent 8dd630b commit 79c3702
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 133 deletions.
Empty file removed src/ingestion/__init__.py
Empty file.
97 changes: 0 additions & 97 deletions src/ingestion/agari.py

This file was deleted.

27 changes: 0 additions & 27 deletions src/runners/ingest_runner.py

This file was deleted.

10 changes: 1 addition & 9 deletions src/runners/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import fire

from runners import ingest_runner, connectors_runner
from runners import connectors_runner

from runners import alert_queries_runner
from runners import alert_suppressions_runner
Expand All @@ -21,10 +21,6 @@ def main(target="all", *rule_names):
for rule_name in rule_names:
connectors_runner.main(rule_name.upper())

elif target == "ingest" and rule_names:
for rule_name in rule_names:
ingest_runner.main(rule_names)

elif target == "processor":
alert_processor.main()

Expand Down Expand Up @@ -73,10 +69,6 @@ def main(target="all", *rule_names):
alert_processor.main()
alert_dispatcher.main()

if target in ['ingest']:
ingest_runner.main()
connectors_runner.main()


if __name__ == '__main__':
fire.Fire(main)

0 comments on commit 79c3702

Please sign in to comment.