summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough
diff options
context:
space:
mode:
authorMindaugas Malinauskas <mindaugas.malinauskas@mongodb.com>2020-06-04 13:08:27 +0300
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-06-08 13:32:40 +0000
commit210053393a311b942835445134794d1bb38268a2 (patch)
treef114d72b395dd07e2b96c7f80f8a5bc45735be1e /jstests/noPassthrough
parentc804280dfcca56bf97b91584da75bfff2df70459 (diff)
downloadmongo-210053393a311b942835445134794d1bb38268a2.tar.gz
SERVER-48353 logv2 cleanup for db/query, s/query, db/views, db/matcher
Diffstat (limited to 'jstests/noPassthrough')
-rw-r--r--jstests/noPassthrough/log_and_profile_query_hash.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthrough/log_and_profile_query_hash.js b/jstests/noPassthrough/log_and_profile_query_hash.js
index 1a8192f1770..e1d6564dfe8 100644
--- a/jstests/noPassthrough/log_and_profile_query_hash.js
+++ b/jstests/noPassthrough/log_and_profile_query_hash.js
@@ -156,7 +156,7 @@ const log = assert.commandWorked(testDB.adminCommand({getLog: "global"})).log;
// 'planCacheKey' and 'queryHash'. Confirm only one line does this.
const creationLogList = log.filter(
logLine => (
- logLine.indexOf("Creating inactive cache entry for query shape") != -1 &&
+ logLine.indexOf("Creating inactive cache entry for query") != -1 &&
(!isJsonLog(conn)
? (logLine.indexOf("planCacheKey " + String(onCreationHashes.planCacheKey)) != -1 &&
logLine.indexOf("queryHash " + String(onCreationHashes.queryHash)) != -1)