File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
tests/integration/container/tests/utils Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 5
5
push :
6
6
branches :
7
7
- main
8
+ - test/basic-conn-test
8
9
paths-ignore :
9
10
- " **/*.md"
10
11
- " **/*.jpg"
21
22
strategy :
22
23
fail-fast : false
23
24
matrix :
24
- dbEngine : ["multi-az-mysql", "multi-az-postgres" ]
25
+ dbEngine : ["multi-az-mysql"]
25
26
26
27
steps :
27
28
- name : Clone repository
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ import { Resource } from "@opentelemetry/resources";
36
36
import { ATTR_SERVICE_NAME } from "@opentelemetry/semantic-conventions" ;
37
37
import { PeriodicExportingMetricReader } from "@opentelemetry/sdk-metrics" ;
38
38
import { OTLPMetricExporter } from "@opentelemetry/exporter-metrics-otlp-grpc" ;
39
+ import { logger } from "../../../../../common/logutils" ;
39
40
40
41
export class TestEnvironment {
41
42
private static env ?: TestEnvironment ;
@@ -85,6 +86,7 @@ export class TestEnvironment {
85
86
if ( ! success ) {
86
87
fail ( `Cluster ${ info . auroraClusterName } is not healthy` ) ;
87
88
}
89
+ logger . info ( `[Test SetUp] Cluster is available` ) ;
88
90
}
89
91
}
90
92
You can’t perform that action at this time.
0 commit comments