We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab5246d commit 3715923Copy full SHA for 3715923
tests/SpecTests/FunctionalTestCase.php
@@ -362,8 +362,9 @@ protected function initOutcomeCollection(array $test)
362
*/
363
protected function initTestSubjects(array $test)
364
{
365
- if (isset($test['useMultipleMongoses']) && $this->isShardedCluster()) {
366
- throw new LogicException('"useMultipleMongoses" is not supported');
+ // TODO: Revise this once a test environment with multiple mongos nodes is available (see: PHPLIB-430)
+ if (isset($test['useMultipleMongoses']) && $test['useMultipleMongoses'] && $this->isShardedCluster()) {
367
+ $this->markTestSkipped('"useMultipleMongoses" is not supported');
368
}
369
370
$clientOptions = isset($test['clientOptions']) ? $test['clientOptions'] : [];
0 commit comments