Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix multihost tests #881

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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 @@ -21,7 +21,7 @@

def exec(ctrl: BluechiControllerMachine, nodes: Dict[str, BluechiAgentMachine]):
node_foo = nodes[NODE_FOO]
config_file_location = "/tmp"
config_file_location = "/etc"
invalid_conf_str = "invalid.conf"

# Copying relevant config files into node container
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

def exec(ctrl: BluechiControllerMachine, nodes: Dict[str, BluechiAgentMachine]):
node_foo = nodes[NODE_FOO]
config_file_location = "/tmp"
config_file_location = "/etc"
bluechi_agent_str = "bluechi-agent.service"
invalid_conf_str = "Invalid-ControllerAddress.conf"
invalid_controller_address = "Invalid-ControllerAddress.conf"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def cmd_on_port(

def exec(ctrl: BluechiControllerMachine, nodes: Dict[str, BluechiAgentMachine]):
node_foo = nodes[NODE_FOO]
config_file_location = "/var/tmp"
config_file_location = "/etc"

# Copy the script to get the process listening on a port
ctrl.copy_container_script("cmd-on-port.sh")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


def exec(ctrl: BluechiControllerMachine, nodes: Dict[str, BluechiAgentMachine]):
config_file_location = "/var/tmp"
config_file_location = "/etc"
invalid_conf_str = "config-files/invalid.conf"

# Copying relevant config files into the container
Expand Down
Loading