-
Notifications
You must be signed in to change notification settings - Fork 114
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
Use Rust Loader for running examples #993
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,17 +26,27 @@ node_configs { | |
address: "test.invalid:9999" | ||
} | ||
} | ||
node_configs { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it possible to update There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is going away soon anyways. |
||
name: "grpc-server" | ||
grpc_server_config { | ||
address: "[::]:8080" | ||
grpc_tls_private_key: "<bytes>" | ||
grpc_tls_certificate: "<bytes>" | ||
} | ||
} | ||
node_configs { | ||
name: "grpc-client" | ||
grpc_client_config { | ||
uri: "https://localhost:7878" | ||
root_tls_certificate: "<bytes>" | ||
address: "localhost:7878" | ||
} | ||
} | ||
node_configs { | ||
name: "absent-grpc-client" | ||
grpc_client_config { | ||
uri: "https://localhost:9999" | ||
uri: "https://test.invalid:9999" | ||
root_tls_certificate: "<bytes>" | ||
address: "test.invalid:9999" | ||
} | ||
} | ||
|
@@ -52,4 +62,4 @@ node_configs { | |
} | ||
grpc_port: 8080 | ||
initial_node_config_name: "frontend-config" | ||
initial_entrypoint_name: "frontend_oak_main" | ||
initial_entrypoint_name: "grpc_frontend_oak_main" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Aside: if we weren't about to delete it, I'd suggest commonizing this code with the equivalent code in
oak_runner_main.cc
. But we are so I won't.)