diff options
author | Dan Timoney <dtimoney@att.com> | 2019-04-18 13:05:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-18 13:05:28 +0000 |
commit | 1e7aa69376ee082cc85f1e22f27763cdbb0c0be3 (patch) | |
tree | 7dd69e676d01373df0a6b4e7b6a56c66974b8412 /ms/blueprintsprocessor/functions | |
parent | fd1b737ed86163f20edaf606e28357025cc63e28 (diff) | |
parent | 0371cdd595b125da3c10440f6ce5e13fcaa8b0bc (diff) |
Merge "Add grpc property service"
Diffstat (limited to 'ms/blueprintsprocessor/functions')
-rw-r--r-- | ms/blueprintsprocessor/functions/python-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/python/executor/ComponentRemotePythonExecutor.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/blueprintsprocessor/functions/python-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/python/executor/ComponentRemotePythonExecutor.kt b/ms/blueprintsprocessor/functions/python-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/python/executor/ComponentRemotePythonExecutor.kt index 1620b6de0..d34dbb7e9 100644 --- a/ms/blueprintsprocessor/functions/python-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/python/executor/ComponentRemotePythonExecutor.kt +++ b/ms/blueprintsprocessor/functions/python-executor/src/main/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/functions/python/executor/ComponentRemotePythonExecutor.kt @@ -68,7 +68,7 @@ open class ComponentRemotePythonExecutor(private val remoteScriptExecutionServic val dynamicProperties = getOperationInput(INPUT_DYNAMIC_PROPERTIES) // TODO("Python execution command and Resolve some expressions with dynamic properties") - val scriptCommand: String = pythonScript.absolutePath + val scriptCommand: String = "python ${pythonScript.absolutePath}" val packages = operationAssignment.implementation?.dependencies // If dependencies are defined, then install in remote server |