Skip to content

Commit

Permalink
fix: Fix default url value bug in the application.properties of gatew…
Browse files Browse the repository at this point in the history
…ay app (#180)

Signed-off-by: Akash Nayak <[email protected]>
  • Loading branch information
Akash-Nayak authored Jun 3, 2022
1 parent 7343f61 commit ef81e8d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services.orders.url=${ENTERPRISE_APP_ORDERS_URL:-http://orders:8080/orders}
services.customers.url=${ENTERPRISE_APP_CUSTOMERS_URL:-http://customers:8080/customers}
services.inventory.url=${ENTERPRISE_APP_INVENTORY_URL:-http://inventory:8080/products}
services.orders.url=${ENTERPRISE_APP_ORDERS_URL:http://orders:8080/orders}
services.customers.url=${ENTERPRISE_APP_CUSTOMERS_URL:http://customers:8080/customers}
services.inventory.url=${ENTERPRISE_APP_INVENTORY_URL:http://inventory:8080/products}

hystrix.command.ProductsCall.execution.isolation.thread.timeoutInMilliseconds=2000

Expand Down

0 comments on commit ef81e8d

Please sign in to comment.