Skip to content

Commit

Permalink
Remove redundant print statement (#60)
Browse files Browse the repository at this point in the history
* Remove redundant print statement

Signed-off-by: Prasad Ghangal <[email protected]>

* Update go version in mod

Signed-off-by: Prasad Ghangal <[email protected]>

* Update go version in CI

Signed-off-by: Prasad Ghangal <[email protected]>
  • Loading branch information
PrasadG193 authored Apr 18, 2021
1 parent 248aea2 commit def14d9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
language: go

go:
- '1.13'
- '1.16'

install:
- go get -u golang.org/x/lint/golint
Expand Down
1 change: 0 additions & 1 deletion connector/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ func (client *ConnectorClient) Post(target url.URL, activity schema.Activity) er
if err != nil {
return err
}
fmt.Println(target.String())
req, err := http.NewRequest(http.MethodPost, target.String(), bytes.NewBuffer(jsonStr))
if err != nil {
return err
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/infracloudio/msbotbuilder-go

go 1.13
go 1.16

require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
Expand Down

0 comments on commit def14d9

Please sign in to comment.