diff options
author | Patrick Brady <pb071s@att.com> | 2018-05-17 13:38:56 -0700 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-05-17 14:49:40 -0700 |
commit | 280439f864b567c9186f1763b40523c5d2a5c629 (patch) | |
tree | 776150cc91d599dda5005c2963115cbe475ca11e /CdtProxyService/src/main | |
parent | ab21f71ff14dc0a6a9c935cae97ca332b439abb7 (diff) |
Correct cdtproxy port for docker
The port number and hostname need to be changed
since the proxy will run in the appc docker.
Change-Id: I22463013756f43a3bb5ff0513944b0d18e24c130
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-ID: APPC-909
Diffstat (limited to 'CdtProxyService/src/main')
-rw-r--r-- | CdtProxyService/src/main/resources/application.properties | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CdtProxyService/src/main/resources/application.properties b/CdtProxyService/src/main/resources/application.properties index 1d9a438..d312a8d 100644 --- a/CdtProxyService/src/main/resources/application.properties +++ b/CdtProxyService/src/main/resources/application.properties @@ -1,13 +1,13 @@ #Created by Amaresh Kumar on 09/May/2018. #=====Application level properties START====================== -server.port=9090 +server.port=9191 spring.application.name=CdtProxyService logging.level.root=DEBUG Djavax.net.debug=ssl; #=====Application level properties END====================== #=========RestConf Backend properties START================== -restConf.backend.hostname=10.12.5.49 -restConf.backend.port=8282 +restConf.backend.hostname=localhost +restConf.backend.port=8181 restConf.username=admin restConf.password=admin #=========RestConf Backend properties END================== |