diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2020-02-19 14:36:43 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-02-19 22:21:37 +0000 |
commit | d8810b45d790ebce228ff484dfc27494aadd2c6b (patch) | |
tree | 53651fabce818e7d460119385f13b6b2630695cb /jstests/noPassthrough | |
parent | dc3adeb1ceed35ddef4458a900b0329d0687cea6 (diff) | |
download | mongo-d8810b45d790ebce228ff484dfc27494aadd2c6b.tar.gz |
SERVER-46026 Fix compression_options.js to ignore tcp fast open warning
Diffstat (limited to 'jstests/noPassthrough')
-rw-r--r-- | jstests/noPassthrough/compression_options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthrough/compression_options.js b/jstests/noPassthrough/compression_options.js index db4b9b4d050..515ee14a83c 100644 --- a/jstests/noPassthrough/compression_options.js +++ b/jstests/noPassthrough/compression_options.js @@ -21,7 +21,7 @@ var runTest = function(optionValue, expected) { .split("\n") .map(function(str) { str = str.replace(/^sh[0-9]+\| /, ""); - if (!/^{/.test(str)) { + if (!/^{.*ismaster/.test(str)) { return ""; } return str; |