Skip to content

Commit

Permalink
fix host specs for docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Kadams35 committed Dec 13, 2022
1 parent 0ab4063 commit 81bcc0d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ public class Config {
Properties stream_properties = new Properties();
stream_properties.put("general.consumer.types", "socket_consumer");
stream_properties.put("general.producer.types", "socket_producer");
stream_properties.put("rest.socket.address", "RestApp");
stream_properties.put("rest.socket.address", "DataEngine");
stream_properties.put("rest.socket.port", "61100");
stream_properties.put("rest.socket.key", "rest-key-reserved");
// stream_properties.put("output.socket.address", "defi-de.idea.rpi.edu");
stream_properties.put("output.socket.address", "RestApp");
stream_properties.put("output.socket.address", "DataEngine");
stream_properties.put("output.socket.port", "61200");
stream_properties.put("local.stream.type", "mongo_db");
stream_properties.put("mongodb.properties.uri", "mongodb://MONGO:27017");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ general.producer.types=socket_producer
# === REST SOCKET PROPERTIES ===

# Rest socket address
rest.socket.address=RestApp
rest.socket.address=DataEngine

# Rest socket port
rest.socket.port=61100
Expand All @@ -20,7 +20,7 @@ rest.socket.key=rest-key-reserved
# === OUTPUT SOCKET PROPERTIES ===

# Output socket address
output.socket.address=RestApp
output.socket.address=DataEngine

# Output socket port
output.socket.port=61200
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public class Config {
app_properties.put("general.transfer.delim", "&&&");
app_properties.put("general.data.dateformat", "yyyy-MM-dd");
app_properties.put("spring.server.port", "8080");
// app_properties.put("spring.server.address", "RestApp");
app_properties.put("spring.server.address", "defi-de.idea.rpi.edu");
app_properties.put("spring.server.address", "RestApp");
// app_properties.put("spring.server.address", "defi-de.idea.rpi.edu");
app_properties.put("rest.socket.address", "DataEngine");
app_properties.put("rest.socket.port", "61100");
app_properties.put("rest.socket.key", "rest-key-reserved");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spring.server.port=8080
# === SOCKET PROPERTIES ===

# Rest socket address
rest.socket.address=RestApp
rest.socket.address=DataEngine

# Rest socket port
rest.socket.port=61100
Expand Down

0 comments on commit 81bcc0d

Please sign in to comment.