Skip to content
Merged
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
2 changes: 1 addition & 1 deletion builder/actions/setup_event_stream_echo_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _build_and_run_eventstream_echo_server(self, env):
target_class_path = os.path.join(sdk_dir, "target", "classes")
directory_separator = os.pathsep

echo_server_command = ["java", "-Daws.crt.log.level=Trace", "-Daws.crt.log.destination=File", "-Daws.crt.log.filename=/tmp/echo.txt", "-classpath",
echo_server_command = ["java", "-classpath",
f"{test_class_path}{directory_separator}{target_class_path}{directory_separator}{classpath}", "software.amazon.awssdk.eventstreamrpc.echotest.EchoTestServiceRunner", "127.0.0.1", "8033"]

print(f'Echo server command: {echo_server_command}')
Expand Down
Loading