Skip to content

Commit 80695ad

Browse files
authored
Fix build (#9344)
1 parent ed46b2d commit 80695ad

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/DbtJobOrchestrator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ public void runJob() throws Exception {
5959
processFactory, NormalizationRunnerFactory.create(
6060
workerConfigs,
6161
destinationLauncherConfig.getDockerImage(),
62-
processFactory)));;
62+
processFactory,
63+
NormalizationRunnerFactory.NORMALIZATION_VERSION)));
6364

6465
log.info("Running dbt worker...");
6566
final Path jobRoot = WorkerUtils.getJobRoot(configs.getWorkspaceRoot(), jobRunConfig.getJobId(), jobRunConfig.getAttemptId());

airbyte-container-orchestrator/src/main/java/io/airbyte/container_orchestrator/NormalizationJobOrchestrator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ public void runJob() throws Exception {
5656
NormalizationRunnerFactory.create(
5757
workerConfigs,
5858
destinationLauncherConfig.getDockerImage(),
59-
processFactory),
59+
processFactory,
60+
NormalizationRunnerFactory.NORMALIZATION_VERSION),
6061
configs.getWorkerEnvironment());
6162

6263
log.info("Running normalization worker...");

airbyte-workers/src/main/java/io/airbyte/workers/normalization/NormalizationRunnerFactory.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ public class NormalizationRunnerFactory {
3434
.put("airbyte/destination-postgres-strict-encrypt", ImmutablePair.of(BASE_NORMALIZATION_IMAGE_NAME, DestinationType.POSTGRES))
3535
.put("airbyte/destination-redshift", ImmutablePair.of(BASE_NORMALIZATION_IMAGE_NAME, DestinationType.REDSHIFT))
3636
.put("airbyte/destination-snowflake", ImmutablePair.of("airbyte/normalization-snowflake", DestinationType.SNOWFLAKE))
37-
.put("airbyte/destination-clickhouse", ImmutablePair.of("airbyte/normalization-clickhouse", DestinationType.CLICKHOUSE))
38-
.put("airbyte/destination-clickhouse-strict-encrypt", ImmutablePair.of("airbyte/normalization-clickhouse", DestinationType.CLICKHOUSE))
3937
.build();
4038

4139
public static NormalizationRunner create(final WorkerConfigs workerConfigs,

airbyte-workers/src/main/java/io/airbyte/workers/temporal/sync/DbtTransformationActivityImpl.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ private CheckedSupplier<Worker<OperatorDbtInput, Void>, Exception> getLegacyWork
111111
new DbtTransformationRunner(
112112
workerConfigs,
113113
jobProcessFactory, NormalizationRunnerFactory.create(
114-
workerConfigs,
115-
destinationLauncherConfig.getDockerImage(),
116-
jobProcessFactory,
117-
NormalizationRunnerFactory.NORMALIZATION_VERSION)));
114+
workerConfigs,
115+
destinationLauncherConfig.getDockerImage(),
116+
jobProcessFactory,
117+
NormalizationRunnerFactory.NORMALIZATION_VERSION)));
118118
}
119119

120120
private CheckedSupplier<Worker<OperatorDbtInput, Void>, Exception> getContainerLauncherWorkerFactory(

0 commit comments

Comments
 (0)