Skip to content

Commit

Permalink
updated normalization for postgres (#15557)
Browse files Browse the repository at this point in the history
  • Loading branch information
andriikorotkov authored Aug 11, 2022
1 parent 246df1f commit 8c30067
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion airbyte-integrations/bases/base-normalization/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ WORKDIR /airbyte
ENV AIRBYTE_ENTRYPOINT "/airbyte/entrypoint.sh"
ENTRYPOINT ["/airbyte/entrypoint.sh"]

LABEL io.airbyte.version=0.2.17
LABEL io.airbyte.version=0.2.18
LABEL io.airbyte.name=airbyte/normalization
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def transform_postgres(config: Dict[str, Any]):

ssl = config.get("ssl")
if ssl:
ssl_mode = config.get("ssl_mode", "allow")
ssl_mode = config.get("ssl_mode", {"mode": "allow"})
dbt_config["sslmode"] = ssl_mode.get("mode")
if ssl_mode["mode"] == "verify-ca":
TransformConfig.create_file("ca.crt", ssl_mode["ca_certificate"])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class NormalizationRunnerFactory {

public static final String BASE_NORMALIZATION_IMAGE_NAME = "airbyte/normalization";
public static final String NORMALIZATION_VERSION = "0.2.17";
public static final String NORMALIZATION_VERSION = "0.2.18";

static final Map<String, ImmutablePair<String, DefaultNormalizationRunner.DestinationType>> NORMALIZATION_MAPPING =
ImmutableMap.<String, ImmutablePair<String, DefaultNormalizationRunner.DestinationType>>builder()
Expand Down

0 comments on commit 8c30067

Please sign in to comment.