We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5181ce commit 630ad69Copy full SHA for 630ad69
example/sample_client.cc
@@ -68,11 +68,11 @@ int main() {
68
StartEntrySpan entry_span(tracing_context, "sample_op1");
69
70
{
71
- std::string target_address = "remote:8082";
+ std::string target_address = "127.0.0.1:8081";
72
StartExitSpan exit_span(tracing_context, entry_span.get(), "sample_op2");
73
exit_span.get()->setPeer(target_address);
74
75
- httplib::Client cli("remote", 8082);
+ httplib::Client cli("127.0.0.1", 8081);
76
httplib::Headers headers = {
77
{kPropagationHeader.data(), *tracing_context->createSW8HeaderValue(
78
exit_span.get(), target_address)}};
0 commit comments