Skip to content

Commit

Permalink
fix for ERO ordering (#471)
Browse files Browse the repository at this point in the history
also set standalone=false in app.properties
  • Loading branch information
haniotak authored Apr 10, 2024
1 parent 1bb7bd6 commit c322534
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
### 1.2.5
> Apr 2024
- standalone setup for ESE development

- bug fix for ERO ordering

### 1.2.4
> Mar 2024
- further opentelemetry integration
Expand Down
2 changes: 1 addition & 1 deletion backend/config/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ startup.exit=false
# - topo.url is ignored
# - southbound to NSO is skipped and assumed successful
# - ESDB vlan syncs are skipped
startup.standalone=true
startup.standalone=false


logging.config=config/logback.xml
Expand Down
2 changes: 2 additions & 0 deletions backend/src/main/java/net/es/oscars/resv/ent/VlanPipe.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,13 @@ public VlanPipe(@JsonProperty("connectionId") String connectionId,
@OneToMany(cascade = CascadeType.ALL)
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@ToString.Exclude
@OrderBy("id ASC")
private List<EroHop> azERO;

@OneToMany(cascade = CascadeType.ALL)
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@ToString.Exclude
@OrderBy("id ASC")
private List<EroHop> zaERO;

// these will be populated by the system when designing
Expand Down

0 comments on commit c322534

Please sign in to comment.