Skip to content

Commit

Permalink
bug :: v2 분리
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Jul 31, 2024
1 parent 16be8f3 commit 61baefa
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ private class VaultUtilImpl(
}

override fun getPath(deploy: Deploy, container: Container): String {
return "${deploy.deployName}-${container.containerEnvironment.name}"
if(deploy.isV2) {
return "${deploy.deployName}-${container.containerEnvironment.name}"
}
return "${deploy.deployName}-${deploy.deployType.name}-${container.containerEnvironment.name}"
}

override fun getPath(deploy: Deploy): List<String> {
Expand Down

0 comments on commit 61baefa

Please sign in to comment.