According to the Kudu API Documentation the restart parameter defaults to true if not supplied.
With the current implementation of deployUsingOneDeploy it's not possible to set restart=false as the parameter will never be appended if the parameter is not true.
|
if (restart) { |
|
queryParameters.push('restart=' + encodeURIComponent(restart)); |
|
} |
According to the Kudu API Documentation the
restartparameter defaults totrueif not supplied.With the current implementation of
deployUsingOneDeployit's not possible to setrestart=falseas the parameter will never be appended if the parameter is not true.pipelines-appservice-lib/packages/appservice-rest/src/Utilities/KuduServiceUtility.ts
Lines 128 to 130 in 89b54bd