From def14d92eaad0e9257319779447c04611a220e14 Mon Sep 17 00:00:00 2001 From: Prasad Ghangal Date: Sun, 18 Apr 2021 16:07:39 +0530 Subject: [PATCH] Remove redundant print statement (#60) * Remove redundant print statement Signed-off-by: Prasad Ghangal * Update go version in mod Signed-off-by: Prasad Ghangal * Update go version in CI Signed-off-by: Prasad Ghangal --- .travis.yml | 2 +- connector/client/client.go | 1 - go.mod | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8039c95..8a6770a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ language: go go: - - '1.13' + - '1.16' install: - go get -u golang.org/x/lint/golint diff --git a/connector/client/client.go b/connector/client/client.go index acaaca4..c7464b8 100644 --- a/connector/client/client.go +++ b/connector/client/client.go @@ -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 diff --git a/go.mod b/go.mod index 424c887..2e7f3a1 100644 --- a/go.mod +++ b/go.mod @@ -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