Skip to content

Commit

Permalink
LS-4640 Widen clock skew to 64bits of micros (#30)
Browse files Browse the repository at this point in the history
* Update deps

* Widen the clock correction field
  • Loading branch information
jmacd authored Jul 23, 2018
1 parent 4c649d1 commit 5fe3bf8
Show file tree
Hide file tree
Showing 6 changed files with 160 additions and 81 deletions.
93 changes: 86 additions & 7 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion collector.proto
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ message ReportRequest {
Reporter reporter = 1;
Auth auth = 2;
repeated Span spans = 3;
int32 timestamp_offset_micros = 5;
int64 timestamp_offset_micros = 5;
InternalMetrics internal_metrics = 6;
}

Expand Down
42 changes: 21 additions & 21 deletions golang/gogo/collectorpb/collector.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion golang/gogo/collectorpb/collector.proto
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ message ReportRequest {
Reporter reporter = 1;
Auth auth = 2;
repeated Span spans = 3;
int32 timestamp_offset_micros = 5;
int64 timestamp_offset_micros = 5;
InternalMetrics internal_metrics = 6;
}

Expand Down
Loading

0 comments on commit 5fe3bf8

Please sign in to comment.