File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed
airbyte-test-utils/src/main/java/io/airbyte/test/utils
airbyte-tests/src/acceptanceTests/java/io/airbyte/test/acceptance Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -293,6 +293,7 @@ public void cleanup() {
293
293
for (final UUID destinationId : destinationIds ) {
294
294
deleteDestination (destinationId );
295
295
}
296
+ destinationPsql .stop ();
296
297
} catch (final Exception e ) {
297
298
LOGGER .error ("Error tearing down test fixtures:" , e );
298
299
}
Original file line number Diff line number Diff line change @@ -199,7 +199,9 @@ void testCheckpointing() throws Exception {
199
199
// now cancel it so that we freeze state!
200
200
try {
201
201
apiClient .getJobsApi ().cancelJob (new JobIdRequestBody ().id (connectionSyncRead1 .getJob ().getId ()));
202
- } catch (final Exception e ) {}
202
+ } catch (final Exception e ) {
203
+ LOGGER .error ("error:" , e );
204
+ }
203
205
204
206
final ConnectionState connectionState = waitForConnectionState (apiClient , connectionId );
205
207
Original file line number Diff line number Diff line change @@ -54,6 +54,11 @@ JOB_MAIN_CONTAINER_CPU_LIMIT=
54
54
JOB_MAIN_CONTAINER_MEMORY_REQUEST =
55
55
JOB_MAIN_CONTAINER_MEMORY_LIMIT =
56
56
57
+ NORMALIZATION_JOB_MAIN_CONTAINER_MEMORY_LIMIT =
58
+ NORMALIZATION_JOB_MAIN_CONTAINER_MEMORY_REQUEST =
59
+ NORMALIZATION_JOB_MAIN_CONTAINER_CPU_LIMIT =
60
+ NORMALIZATION_JOB_MAIN_CONTAINER_CPU_REQUEST =
61
+
57
62
# Worker pod tolerations, annotations and node selectors
58
63
JOB_KUBE_TOLERATIONS =
59
64
JOB_KUBE_ANNOTATIONS =
@@ -64,6 +69,7 @@ JOB_KUBE_MAIN_CONTAINER_IMAGE_PULL_POLICY=
64
69
65
70
# Launch a separate pod to orchestrate sync steps
66
71
CONTAINER_ORCHESTRATOR_ENABLED = true
72
+ CONTAINER_ORCHESTRATOR_IMAGE =
67
73
68
74
# Open Telemetry Configuration
69
75
METRIC_CLIENT =
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ JOB_KUBE_MAIN_CONTAINER_IMAGE_PULL_POLICY=
71
71
72
72
# Launch a separate pod to orchestrate sync steps
73
73
CONTAINER_ORCHESTRATOR_ENABLED = true
74
+ CONTAINER_ORCHESTRATOR_IMAGE =
74
75
75
76
# Open Telemetry Configuration
76
77
METRIC_CLIENT =
You can’t perform that action at this time.
0 commit comments