Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/prep-release.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function get_files() {

"src/libmongoc/src/common/src/*.{c,h,h.in}",
// Note: src/libmongoc/src/common/src/mlib/ does not contain source files (as of libmongoc 2.0.1)
"src/libmongoc/src/common/src/mlib/*.{c,h}",
"src/libmongoc/src/common/src/mlib/*.h",
"src/libmongoc/src/kms-message/src/*.{c,h}",
"src/libmongoc/src/kms-message/src/kms_message/*.{c,h}",
"src/libmongoc/src/libbson/src/bson/*.{c,h,h.in}",
Expand All @@ -65,7 +65,7 @@ function get_files() {
"src/libmongocrypt-compat/mongocrypt/*.{c,h}",
"src/libmongocrypt/src/*.{c,h,h.in}",
"src/libmongocrypt/src/crypto/*.{c,h}",
"src/libmongocrypt/src/mlib/*.{c,h}",
"src/libmongocrypt/src/mlib/*.h",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@alcaeus: This line appears to be redundant with the pattern appearing after the subsequent comment. Perhaps this should be removed entirely?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed. Removed in #1848

// Note: src/libmongocrypt/src/mlib/ does not contain source files (as of libmongocrypt 1.14.0)
"src/libmongocrypt/src/mlib/*.h",
"src/libmongocrypt/src/os_posix/*.{c,h}",
Expand Down
4 changes: 0 additions & 4 deletions tests/manager/manager-ctor-write_concern-error-001.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ echo throws(function() {
create_test_manager(null, ['w' => 1.0]);
}, "MongoDB\Driver\Exception\InvalidArgumentException"), "\n";

/* Note: Values of w < 0 are invalid, but libmongoc's URI string parsing only
* logs a warning instead of raising an error (see: CDRIVER-2234), so we cannot
* test for this. */

echo throws(function() {
create_test_manager(null, ['w' => -1]);
}, "MongoDB\Driver\Exception\InvalidArgumentException"), "\n";
Expand Down