-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove deprecated configuration #819
Conversation
@@ -276,7 +273,7 @@ public static function provideMergeOptions(): array | |||
// the "options" array is totally replaced | |||
$cases[] = [ | |||
[ | |||
['connections' => ['default' => ['options' => ['timeout' => 2000]]]], | |||
['connections' => ['default' => ['options' => ['socketTimeoutMS' => 2000]]]], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Simply switched to an option that is supported.
|--------------------------|-------------|--------------------| | ||
| `default_commit_options` | `fsync` | `j` | | ||
| `default_commit_options` | `safe` | `w` | | ||
| `connections.*.options` | `fsync` | `journal` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if the .*.
is the correct notation we use to reference paths with variable parts.
A reminder that when #820 is merged in 5.0.x, we should remove the |
53c5089
to
e4b423d
Compare
Done, after rebase. |
default_commit_options
fsync
j
default_commit_options
safe
w
connections.*.options
fsync
journal
connections.*.options
slaveOkay
readPreference
connections.*.options
timeout
connectTimeoutMS
connections.*.options
wTimeout
wTimeoutMS
Flagged as deprecated in #820