Skip to content

Commit

Permalink
Reduce default limit on links to 32.
Browse files Browse the repository at this point in the history
  • Loading branch information
g-easy committed Jul 17, 2018
1 parent 6004844 commit 7010143
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opencensus/trace/internal/trace_config_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace {
constexpr uint32_t kMaxAttributes = 32;
constexpr uint32_t kMaxAnnotations = 32;
constexpr uint32_t kMaxMessageEvents = 128;
constexpr uint32_t kMaxLinks = 128;
constexpr uint32_t kMaxLinks = 32;
constexpr double kDefaultSamplingProbability = 1e-4;

TraceParams MakeDefaultTraceParams() {
Expand Down

0 comments on commit 7010143

Please sign in to comment.