Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit fdeab59

Browse files
authored
Reduce default limit on links to 32. (#173)
Per census-instrumentation/opencensus-specs#139
1 parent 6004844 commit fdeab59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opencensus/trace/internal/trace_config_impl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace {
2626
constexpr uint32_t kMaxAttributes = 32;
2727
constexpr uint32_t kMaxAnnotations = 32;
2828
constexpr uint32_t kMaxMessageEvents = 128;
29-
constexpr uint32_t kMaxLinks = 128;
29+
constexpr uint32_t kMaxLinks = 32;
3030
constexpr double kDefaultSamplingProbability = 1e-4;
3131

3232
TraceParams MakeDefaultTraceParams() {

0 commit comments

Comments
 (0)