1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-03-03 15:02:35 +02:00

Remove useless space from lockIdentifier (#2057)

the space does not contribute to the uniqueness of the lock
identifier. Hence the space should be removed.

Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
This commit is contained in:
Marcus Holl 2020-09-23 11:19:32 +02:00 committed by GitHub
parent 32fd89c664
commit 5e0402c345
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -213,7 +213,7 @@ void call(parameters = [:]) {
configuration.source
)
lock("$STEP_NAME :${neoCommandHelper.resourceLock()}") {
lock("$STEP_NAME:${neoCommandHelper.resourceLock()}") {
deploy(script, configuration, neoCommandHelper, configuration.dockerImage, deployMode)
}
}