Skip to content

Commit

Permalink
Merge branch 'hotfix-v1.2.0' of https://github.com/in2workspace/walle…
Browse files Browse the repository at this point in the history
…t-api into hotfix-v1.2.0
  • Loading branch information
rubenmodamioin2 committed Jun 11, 2024
2 parents 1de80b3 + 0ce1002 commit b14ce79
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ public class BrokerConfig {

private final BrokerProperties brokerProperties;

private String internal;
private String internalDomain;

@PostConstruct
public void init() {
internal = initInternalUrl();
internalDomain = initInternalUrl();
}

public BrokerConfig(BrokerProperties brokerProperties) {
Expand All @@ -26,7 +26,7 @@ public String getProvider() {
}

public String getInternalUrl() {
return internal;
return internalDomain;
}

private String initInternalUrl() {
Expand Down

0 comments on commit b14ce79

Please sign in to comment.