Skip to content

Commit 37a2e87

Browse files
committed
clean up code
1 parent 4aa80d3 commit 37a2e87

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ matrix:
1010
include:
1111
- go: 1.12.x
1212
- go: 1.13.x
13+
- go: 1.14.x
14+
- go: 1.15.x
15+
- go: 1.16.x
1316
env: LINT=1
1417

1518
install:

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
[![CodeCov][cov-img]][cov]
55
[![GoDoc][doc-img]][doc]
66
[![Github release][release-img]][release]
7-
[![Build Status][ci-img]][ci]
8-
[![FOSSA][fossa-img]][fossa]
97
[![Go Report Card][report-card-img]][report-card]
108
[![lic][license-img]][license]
119
[![made][made-img]][made]
@@ -1154,7 +1152,7 @@ For the contributors, the following is `athenadriver` Package's UML Class Diagra
11541152

11551153
----
11561154

1157-
`athenadriver` is brought to you by Uber ATG Infrastructure. Copyright (c) 2020 Uber Technologies, Inc. ![](resources/atg-infra.png)
1155+
`athenadriver` is brought to you by Uber. Copyright (c) 2020 Uber Technologies, Inc.
11581156

11591157

11601158

@@ -1179,6 +1177,6 @@ For the contributors, the following is `athenadriver` Package's UML Class Diagra
11791177

11801178
[release-policy]: https://golang.org/doc/devel/release.html#policy
11811179

1182-
[made-img]: https://img.shields.io/badge/By-Uber%20ATG-red
1183-
[made]: https://www.uber.com/us/en/atg/
1180+
[made-img]: https://img.shields.io/badge/By-Uber%20Tech-red
1181+
[made]: https://www.uber.com
11841182

go/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ var (
4242
ErrAthenaNilAPI = errors.New("athenaAPI must not be nil")
4343
ErrTestMockGeneric = errors.New("some_mock_error_for_test")
4444
ErrTestMockFailedByAthena = errors.New("the reason why Athena failed the query")
45-
ErrServiceLimitOverride = errors.New(fmt.Sprintf("service limit override must be greater than %d", PoolInterval))
45+
ErrServiceLimitOverride = fmt.Errorf("service limit override must be greater than %d", PoolInterval)
4646
)

0 commit comments

Comments
 (0)