Skip to content

Commit

Permalink
clean up code
Browse files Browse the repository at this point in the history
  • Loading branch information
henrywoo committed Jul 16, 2021
1 parent 4aa80d3 commit 37a2e87
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ matrix:
include:
- go: 1.12.x
- go: 1.13.x
- go: 1.14.x
- go: 1.15.x
- go: 1.16.x
env: LINT=1

install:
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
[![CodeCov][cov-img]][cov]
[![GoDoc][doc-img]][doc]
[![Github release][release-img]][release]
[![Build Status][ci-img]][ci]
[![FOSSA][fossa-img]][fossa]
[![Go Report Card][report-card-img]][report-card]
[![lic][license-img]][license]
[![made][made-img]][made]
Expand Down Expand Up @@ -1154,7 +1152,7 @@ For the contributors, the following is `athenadriver` Package's UML Class Diagra

----

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



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

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

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

2 changes: 1 addition & 1 deletion go/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ var (
ErrAthenaNilAPI = errors.New("athenaAPI must not be nil")
ErrTestMockGeneric = errors.New("some_mock_error_for_test")
ErrTestMockFailedByAthena = errors.New("the reason why Athena failed the query")
ErrServiceLimitOverride = errors.New(fmt.Sprintf("service limit override must be greater than %d", PoolInterval))
ErrServiceLimitOverride = fmt.Errorf("service limit override must be greater than %d", PoolInterval)
)

0 comments on commit 37a2e87

Please sign in to comment.