File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Step/Deploy/InstallUpdate/Install/Setup Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ public function create(string $handler): AbstractProcessingHandler
109
109
: Logger::INFO ;
110
110
$ handlerInstance = new StreamHandler (
111
111
$ configuration ->get ('stream ' ),
112
- $ minLevel ?: $ defaultLevelStream
112
+ $ minLevel ?: Logger:: INFO
113
113
);
114
114
break ;
115
115
case static ::HANDLER_EMAIL :
Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ public function validateVersionsDataProvider(): array
320
320
[
321
321
ServiceInterface::NAME_OPENSEARCH => '1.2 '
322
322
],
323
- 0
323
+ 1
324
324
],
325
325
[
326
326
'2.4.3 ' ,
@@ -399,7 +399,7 @@ public function validateVersionsDataProvider(): array
399
399
ServiceInterface::NAME_OPENSEARCH => '1.2 ' ,
400
400
ServiceInterface::NAME_RABBITMQ => '3.8.0 '
401
401
],
402
- 0
402
+ 1
403
403
],
404
404
[
405
405
'2.4.3-p3 ' ,
Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ public function testExecuteWithESauthOptions(): void
437
437
['2.4.0 ' , true ],
438
438
['2.4.2 ' , false ]
439
439
]);
440
- $ this ->elasticSearchMock ->expects ($ this ->once ())
440
+ $ this ->elasticSearchMock ->expects ($ this ->any ())
441
441
->method ('isInstalled ' )
442
442
->willReturn (true );
443
443
$ this ->elasticSearchMock ->expects ($ this ->once ())
@@ -464,7 +464,7 @@ public function testExecuteWithESauthOptions(): void
464
464
]
465
465
]);
466
466
467
- $ this ->openSearchMock ->expects ($ this ->once ())
467
+ $ this ->openSearchMock ->expects ($ this ->any ())
468
468
->method ('isInstalled ' )
469
469
->willReturn (false );
470
470
$ this ->openSearchMock ->expects ($ this ->never ())
@@ -507,7 +507,7 @@ public function testExecuteWithOSauthOptions(
507
507
->method ('satisfies ' )
508
508
->with ('>=2.3.7-p3 <2.4.0 || >=2.4.3-p2 ' )
509
509
->willReturn (true );
510
- $ this ->openSearchMock ->expects ($ this ->once ())
510
+ $ this ->openSearchMock ->expects ($ this ->any ())
511
511
->method ('isInstalled ' )
512
512
->willReturn (true );
513
513
$ this ->openSearchMock ->expects ($ this ->once ())
@@ -534,7 +534,7 @@ public function testExecuteWithOSauthOptions(
534
534
]
535
535
]);
536
536
537
- $ this ->elasticSearchMock ->expects ($ this ->once ())
537
+ $ this ->elasticSearchMock ->expects ($ this ->any ())
538
538
->method ('isInstalled ' )
539
539
->willReturn (false );
540
540
$ this ->elasticSearchMock ->expects ($ this ->never ())
You can’t perform that action at this time.
0 commit comments