summaryrefslogtreecommitdiff
path: root/src/mongo/util/net/sock_test.cpp
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2019-09-10 19:03:36 +0000
committerevergreen <evergreen@mongodb.com>2019-09-10 19:03:36 +0000
commit5a0f718e1309a4484580d8038016d043ef3b887f (patch)
tree7a331d57ba6e33e61f96ed69b2aa387003a039ab /src/mongo/util/net/sock_test.cpp
parentb9e29cd56ebc9aca06f68eeeda7c523d3dfd6d41 (diff)
downloadmongo-5a0f718e1309a4484580d8038016d043ef3b887f.tar.gz
SERVER-43119 FailPoint cleanup
- Don't use MONGO_INITIALIZER to declare each fail point. We only need one init task in total: freeze and iterate the registry. - remove MONGO_FAIL_POINT_DECLARE macro (extern) - remove MONGO_FAIL_POINT_SHOULD_FAIL macro (FailPoint::shouldFail) - remove MONGO_FAIL_POINT_BLOCK_IF (FailPoint::executeIf) - remove MONGO_FAIL_POINT_BLOCK (FailPoint::execute) - clean up FailPointRegistry and fail_point_service implementation.
Diffstat (limited to 'src/mongo/util/net/sock_test.cpp')
-rw-r--r--src/mongo/util/net/sock_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/util/net/sock_test.cpp b/src/mongo/util/net/sock_test.cpp
index d9b3ec8ee84..0d6d4c69017 100644
--- a/src/mongo/util/net/sock_test.cpp
+++ b/src/mongo/util/net/sock_test.cpp
@@ -208,7 +208,7 @@ const char kSocketFailPointName[] = "throwSockExcep";
class SocketFailPointTest : public unittest::Test {
public:
SocketFailPointTest()
- : _failPoint(getGlobalFailPointRegistry()->getFailPoint(kSocketFailPointName)),
+ : _failPoint(globalFailPointRegistry().find(kSocketFailPointName)),
_sockets(socketPair(SOCK_STREAM)) {
ASSERT_TRUE(_failPoint != nullptr);
ASSERT_TRUE(_sockets.first);