diff options
author | Brinda Santh <brindasanth@in.ibm.com> | 2019-04-10 15:11:10 -0400 |
---|---|---|
committer | Alexis de Talhouƫt <adetalhouet89@gmail.com> | 2019-04-16 10:38:50 -0400 |
commit | 0371cdd595b125da3c10440f6ce5e13fcaa8b0bc (patch) | |
tree | f5d8537b17abe113b3c7da1991df09ac5d4102bf /ms/blueprintsprocessor/functions | |
parent | 065e76a7e3d9cf968fbbf456203ce0657a45fa2c (diff) |
Add grpc property service
Change-Id: Ifa1975235433ef3e84b0ed1261375108809946f4
Issue-ID: CCSDK-1215
Signed-off-by: Brinda Santh <brindasanth@in.ibm.com>
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 |