Skip to content

Commit

Permalink
Fix SpanHttpAsyncClient/ContextAsyncClient order
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldraper committed Mar 14, 2017
1 parent 77cb828 commit 88520ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static CloseableHttpAsyncClient trace(CloseableHttpAsyncClient client) {
StandardHttpTagger.FACTORY,
ContentHttpTagger.FACTORY
));
return new ContextAsyncClient(new SpanHttpAsyncClient(client, GlobalTracer.get(), ContextSpan.DEFAULT, taggerFactory), Context.DEFAULT);
return new SpanHttpAsyncClient(new ContextAsyncClient(client, Context.DEFAULT), GlobalTracer.get(), ContextSpan.DEFAULT, taggerFactory);
}

}

0 comments on commit 88520ab

Please sign in to comment.