Skip to content

Commit e53e290

Browse files
authored
replace '\\n' -> '\n' (#9793)
Signed-off-by: Sergey Chvalyuk <grubberr@gmail.com>
1 parent 1c421a9 commit e53e290

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

airbyte-integrations/bases/base-normalization/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ WORKDIR /airbyte
2828
ENV AIRBYTE_ENTRYPOINT "/airbyte/entrypoint.sh"
2929
ENTRYPOINT ["/airbyte/entrypoint.sh"]
3030

31-
LABEL io.airbyte.version=0.1.63
31+
LABEL io.airbyte.version=0.1.64
3232
LABEL io.airbyte.name=airbyte/normalization

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
public class NormalizationRunnerFactory {
1515

1616
public static final String BASE_NORMALIZATION_IMAGE_NAME = "airbyte/normalization";
17-
public static final String NORMALIZATION_VERSION = "0.1.63";
17+
public static final String NORMALIZATION_VERSION = "0.1.64";
1818

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

airbyte-workers/src/main/resources/sshtunneling.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function openssh() {
3131
# create a temporary file to hold ssh key and trap to delete on EXIT
3232
trap 'rm -f "$tmpkeyfile"' EXIT
3333
tmpkeyfile=$(mktemp /tmp/xyzfile.XXXXXXXXXXX) || return 1
34-
echo "$(cat $1 | jq -r '.tunnel_map.ssh_key')" > $tmpkeyfile
34+
cat $1 | jq -r '.tunnel_map.ssh_key | gsub("\\\\n"; "\n")' > $tmpkeyfile
3535
# -f=background -N=no remote command -M=master mode StrictHostKeyChecking=no auto-adds host
3636
echo "Running: ssh -f -N -M -o StrictHostKeyChecking=no -S {control socket} -i {key file} -l ${tunnel_username} -L ${tunnel_local_port}:${tunnel_db_host}:${tunnel_db_port} ${tunnel_host}"
3737
ssh -f -N -M -o StrictHostKeyChecking=no -S $tmpcontrolsocket -i $tmpkeyfile -l ${tunnel_username} -L ${tunnel_local_port}:${tunnel_db_host}:${tunnel_db_port} ${tunnel_host} &&

0 commit comments

Comments
 (0)