Skip to content

Commit

Permalink
Merge pull request #18 from objectiser/standalone
Browse files Browse the repository at this point in the history
Enable account mgr url to be set via system property aswell as enviro…
  • Loading branch information
objectiser authored Oct 18, 2017
2 parents 7b6248e + 348689c commit 50239fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class OrderMgrController {
@Autowired
private RestTemplate restTemplate;

private static String accountMgrUrl = System.getenv("ACCOUNTMGR_URL");
private static String accountMgrUrl = System.getProperty("ACCOUNTMGR_URL", System.getenv("ACCOUNTMGR_URL"));

@Autowired
private io.opentracing.Tracer tracer;
Expand Down

0 comments on commit 50239fe

Please sign in to comment.