File tree Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -123,19 +123,7 @@ bool should_skip_spec_test(const client& client, document::view test) {
123
123
return false ;
124
124
}
125
125
126
- std::string server_version;
127
- try {
128
- server_version = test_util::get_server_version (client);
129
- } catch (const operation_exception& e) {
130
- // Mongohouse does not support serverStatus, so if we get an error from
131
- // serverStatus, exit this logic early and run the test.
132
- std::string message = e.what ();
133
- if (message.find (" command serverStatus is unsupported" ) != std::string::npos) {
134
- return false ;
135
- }
136
-
137
- throw e;
138
- }
126
+ std::string server_version = test_util::get_server_version (client);
139
127
140
128
std::string topology = test_util::get_topology (client);
141
129
You can’t perform that action at this time.
0 commit comments