Skip to content
This repository was archived by the owner on Aug 17, 2020. It is now read-only.

Commit c1f2431

Browse files
committed
Bump agent version to 0.1.10
1 parent 049f627 commit c1f2431

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

agent/agent.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type (
5454
)
5555

5656
var (
57-
version = "0.1.9"
57+
version = "0.1.10"
5858
defaultApiEndpoint = "https://app.scope.dev"
5959

6060
printReportOnce sync.Once

agent/recorder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ func (r *SpanRecorder) callIngest(payload io.Reader) (statusCode int, err error)
236236
}
237237

238238
lastError = err
239-
r.logger.Printf("error: client timeout, retrying in %d seconds", retryBackoff/time.Second)
239+
r.logger.Printf("client error, retrying in %d seconds", retryBackoff/time.Second)
240240
time.Sleep(retryBackoff)
241241
atomic.AddInt64(&r.stats.sendSpansRetries, 1)
242242
continue

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ require (
1414
github.com/stretchr/testify v1.4.0
1515
github.com/undefinedlabs/go-mpatch v0.0.0-20200122175732-0044123dbb98
1616
github.com/vmihailenco/msgpack v4.0.4+incompatible
17+
golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3 // indirect
1718
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa
1819
golang.org/x/sys v0.0.0-20200122134326-e047566fdf82 // indirect
20+
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135 // indirect
1921
google.golang.org/appengine v1.6.5 // indirect
2022
google.golang.org/grpc v1.27.1
2123
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
2224
gopkg.in/tomb.v2 v2.0.0-20161208151619-d5d1b5820637
25+
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc // indirect
2326
)

0 commit comments

Comments
 (0)