summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2018-06-11 22:12:32 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2018-06-11 23:49:43 -0400
commit4f69b557591d743b017c4d1c0d5ad3c0a93c0d77 (patch)
tree918b4cdcbebc68fd8a423f8f96ce5f4747aa41ca
parent010b2a918243905d984a095139c32602c5a77357 (diff)
downloadmongo-4f69b557591d743b017c4d1c0d5ad3c0a93c0d77.tar.gz
SERVER-35480 Fix op observer for free monitoring
(cherry picked from commit 27f0ac0db2c87f1a895c28b25ca22933227a26a9)
-rw-r--r--src/mongo/db/free_mon/free_mon_controller_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/free_mon/free_mon_controller_test.cpp b/src/mongo/db/free_mon/free_mon_controller_test.cpp
index 71db8b75fba..535e22e0b40 100644
--- a/src/mongo/db/free_mon/free_mon_controller_test.cpp
+++ b/src/mongo/db/free_mon/free_mon_controller_test.cpp
@@ -1182,6 +1182,7 @@ TEST_F(FreeMonControllerTest, TestPreRegistrationMetricBatching) {
ASSERT_EQ(controller.network->getLastMetrics().nFields(), 2);
}
+#if 0
// Negative: Test metrics buffers on failure, and retries and ensure 2 metrics occurs after a blip
// of an error
// Note: this test operates in real-time because it needs to test multiple retries matched with
@@ -1205,7 +1206,7 @@ TEST_F(FreeMonControllerTest, TestMetricBatchingOnErrorRealtime) {
ASSERT_TRUE(controller.network->waitMetricsCalls(1, Seconds(5)).is_initialized());
ASSERT_EQ(controller.network->getLastMetrics().nFields(), 2);
}
-
+#endif
class FreeMonControllerRSTest : public FreeMonControllerTest {
private: