Skip to content
Snippets Groups Projects
Commit cbb8752b authored by Chad Hanna's avatar Chad Hanna
Browse files

make sure to not send gracedb events during flush if the threshold is None

parent 54744014
No related branches found
No related tags found
No related merge requests found
......@@ -663,7 +663,8 @@ class Data(object):
self.connection.commit()
# do GraceDB alerts
self.do_gracedb_alerts()
if self.gracedb_far_threshold is not None:
self.do_gracedb_alerts()
def do_gracedb_alerts(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment