Skip to content

Commit

Permalink
fix: proxymap parameter is not read when run as command (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
m90 authored Dec 13, 2023
1 parent c77998b commit 56763f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# queryservice-updater

## 0.3.84_3.13 - December 2023

- Proxy Map parameter needs to be initialized when running as command

## 0.3.84_3.12 - December 2023

- T352656: Support running updater as one off command with command line args
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ private static void setServiceValuesFromEnvOrDie() {

public static void setCommandValuesFromEnvOrDie() {
wbStackUpdaterThreadCount = Integer.parseInt(System.getenv().getOrDefault("WBSTACK_THREAD_COUNT", "10"));
wbStackProxyMapIngress = System.getenv("WBSTACK_PROXYMAP_INGRESS");
}

private static void setSingleUseServicesAndObjects() {
Expand Down

0 comments on commit 56763f3

Please sign in to comment.