Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,20 @@ def get_public_ip(self, nodes_state):

def get_inputs(self):
return dict(self.access_credentials,
**{'host_ip': self.private_ip_address})
**{'nodejs_host_ip': self.private_ip_address,
'mongod_host_ip': self.private_ip_address})

@property
def expected_nodes_count(self):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should now be 5

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

entrypoint_node_name should be nodejs_host

return 4
return 5

@property
def host_expected_runtime_properties(self):
return []

@property
def entrypoint_node_name(self):
return 'host'
return 'nodejs_host_ip'

@property
def entrypoint_property_name(self):
Expand Down