Skip to content

Commit

Permalink
comment out send data to backend and flush sampel tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushaga14 committed Dec 30, 2024
1 parent 009f014 commit 902ea32
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ public static void main(String[] args) throws Exception {
.build();

new MaliciousTrafficDetectorTask(trafficKafka, internalKafka, createRedisClient()).run();
new FlushSampleDataTask(
sessionFactory, internalKafka, KafkaTopic.ThreatDetection.MALICIOUS_EVENTS)
.run();
new SendMaliciousEventsToBackend(
sessionFactory, internalKafka, KafkaTopic.ThreatDetection.ALERTS)
.run();
// new FlushSampleDataTask(
// sessionFactory, internalKafka, KafkaTopic.ThreatDetection.MALICIOUS_EVENTS)
// .run();
// new SendMaliciousEventsToBackend(
// sessionFactory, internalKafka, KafkaTopic.ThreatDetection.ALERTS)
// .run();
new CleanupTask(sessionFactory).run();
}

Expand Down

0 comments on commit 902ea32

Please sign in to comment.