summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorMikhail Shchatko <mikhail.shchatko@mongodb.com>2021-09-23 15:09:45 +0300
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-09-23 16:18:32 +0000
commit3cfd58313f40c5fa881028632d7685e509373ce5 (patch)
tree5ec84e1750efe4dd2cfc864b1bacc117260041ea /buildscripts
parent92738c5fa0e8169299e5393e88159b8cbb9559ca (diff)
downloadmongo-3cfd58313f40c5fa881028632d7685e509373ce5.tar.gz
SERVER-60169 Remove change stream documents check in background hook
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/resmokelib/testing/hooks/change_streams.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/buildscripts/resmokelib/testing/hooks/change_streams.py b/buildscripts/resmokelib/testing/hooks/change_streams.py
index cd39516dc6e..21a0a2a3c2f 100644
--- a/buildscripts/resmokelib/testing/hooks/change_streams.py
+++ b/buildscripts/resmokelib/testing/hooks/change_streams.py
@@ -37,10 +37,6 @@ class RunChangeStreamsInBackground(interface.Hook):
"""Stop the background thread."""
if self._change_streams_thread is not None:
self._stop_background_thread()
- if self._full_suite_changes_num == 0:
- teardown_flag.set()
- raise Exception(
- "No change stream documents were observed during the background hook run.")
def before_test(self, test, test_report):
"""Start the background thread if it is not already started."""