Skip to content

Commit

Permalink
add "OSCARS-" to connection-id to create vpls service name (#472)
Browse files Browse the repository at this point in the history
  • Loading branch information
haniotak authored Apr 16, 2024
1 parent c322534 commit 493a0ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# OSCARS Release Notes
### 1.2.5
> Apr 2024
- prepend "OSCARS" to VPLS service name
- standalone setup for ESE development
- bug fix for ERO ordering

Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/java/net/es/oscars/sb/nso/NsoAdapter.java
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ public NsoServicesWrapper nsoOscarsServices(Connection conn) throws NsoGenExcept

NsoVPLS vpls = NsoVPLS.builder()
.description(nsoDescription)
.name(conn.getConnectionId())
.name("OSCARS-"+conn.getConnectionId())
.qosMode(NsoVplsQosMode.GUARANTEED)
.routingDomain(nsoProperties.getRoutingDomain())
.vcId(vcid)
Expand Down

0 comments on commit 493a0ad

Please sign in to comment.