Skip to content

Commit

Permalink
VP-87: Making service names unique
Browse files Browse the repository at this point in the history
  • Loading branch information
christianpape authored and Benjamin Reed committed Feb 14, 2024
1 parent 25c8f6c commit 15063bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ protected Requisition handleRequest(final RequestContext context) throws Veloclo
for(final CloudService cloudService : cloudServicesOnLink) {
final var service = ImmutableRequisitionMonitoredService
.newBuilder()
.setName(String.format("VelocloudTunnel-%s-%s", cloudService.name, cloudService.role))
.setName(String.format("VelocloudTunnel-%s-%s-%s", link._interface, cloudService.name, cloudService.role, link.id))
.addMetaData(ImmutableRequisitionMetaData.newBuilder()
.setContext(VELOCLOUD_METADATA_CONTEXT)
.setKey("edgeId")
Expand Down

0 comments on commit 15063bc

Please sign in to comment.