You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by di...@apache.org on 2022/12/07 16:37:41 UTC

[oozie] branch master updated: OOZIE-3682 Prepare ssh-wrapper script to handle callback specific arguments with quotes (jmakai via dionusos)

This is an automated email from the ASF dual-hosted git repository.

dionusos pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/oozie.git


The following commit(s) were added to refs/heads/master by this push:
     new 6a26b1c29 OOZIE-3682 Prepare ssh-wrapper script to handle callback specific arguments with quotes (jmakai via dionusos)
6a26b1c29 is described below

commit 6a26b1c29e02c547ecbb5f8f4350d9417bfa74d2
Author: Denes Bodo <di...@apache.org>
AuthorDate: Wed Dec 7 17:29:27 2022 +0100

    OOZIE-3682 Prepare ssh-wrapper script to handle callback specific arguments with quotes (jmakai via dionusos)
---
 core/src/main/resources/ssh-wrapper.sh | 2 ++
 release-log.txt                        | 1 +
 2 files changed, 3 insertions(+)

diff --git a/core/src/main/resources/ssh-wrapper.sh b/core/src/main/resources/ssh-wrapper.sh
index 5aa6293e4..d879f9a95 100644
--- a/core/src/main/resources/ssh-wrapper.sh
+++ b/core/src/main/resources/ssh-wrapper.sh
@@ -23,8 +23,10 @@ shift
 callbackCmnd=${1}
 shift
 callbackUrl=${1}
+callbackUrl=$(echo ${callbackUrl} | tr -d '"')
 shift
 callbackPost=${1}
+callbackPost=$(echo ${callbackPost} | tr -d '"')
 shift
 actionId=${1}
 shift
diff --git a/release-log.txt b/release-log.txt
index 05a62d125..b681939e3 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 5.3.0 release (trunk - unreleased)
 
+OOZIE-3682 Prepare ssh-wrapper script to handle callback specific arguments with quotes (jmakai via dionusos)
 OOZIE-3683 Fix intermittent unit test failure in testLoadOnRestart (jmakai via dionusos)
 OOZIE-3679 Correct maximum wait time between database retry attempts property (jmakai via dionusos)
 OOZIE-3606 Extend file system EL functions to use custom file system properties (jmakai via dionusos)