diff options
author | Gabriel Marks <gabriel.marks@mongodb.com> | 2022-04-08 04:11:10 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-04-08 05:07:46 +0000 |
commit | 13e435912a9880d265ec400e921e8a3743b13c65 (patch) | |
tree | 143cd74a3d0f2bce4da540e607b746e3a67ed870 /src/mongo/db/s/SConscript | |
parent | f95245f1cb5bb16d58ed9b6aeca57034971620a5 (diff) | |
download | mongo-13e435912a9880d265ec400e921e8a3743b13c65.tar.gz |
SERVER-63522 Observe DDL operations for user write blocking
Diffstat (limited to 'src/mongo/db/s/SConscript')
-rw-r--r-- | src/mongo/db/s/SConscript | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/db/s/SConscript b/src/mongo/db/s/SConscript index d16459c2c44..bf63a589862 100644 --- a/src/mongo/db/s/SConscript +++ b/src/mongo/db/s/SConscript @@ -231,6 +231,9 @@ env.Library( LIBDEPS=[ '$BUILD_DIR/mongo/base', '$BUILD_DIR/mongo/s/grid', + ], + LIBDEPS_PRIVATE=[ + '$BUILD_DIR/mongo/db/write_block_bypass', ] ) |