Skip to content

Commit

Permalink
Merge pull request #1005 from subutai-io/issue-1003
Browse files Browse the repository at this point in the history
fixing test failure on Jenkins due to go version increase
  • Loading branch information
Dilshat committed Oct 22, 2019
2 parents be43a16 + 03a7559 commit c708e58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agent/discovery/discovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ type handler struct {

func (h handler) Tracef(f string, args ...interface{}) {}
func (h handler) Infof(f string, args ...interface{}) {}
func (h handler) Warnf(f string, args ...interface{}) { log.Debug("SSDP: " + fmt.Sprintf(f, args)) }
func (h handler) Errorf(f string, args ...interface{}) { log.Debug("SSDP: " + fmt.Sprintf(f, args)) }
func (h handler) Warnf(f string, args ...interface{}) { log.Debug("SSDP: " + fmt.Sprintf(f, args...)) }
func (h handler) Errorf(f string, args ...interface{}) { log.Debug("SSDP: " + fmt.Sprintf(f, args...)) }

func (h handler) Response(message gossdp.ResponseMessage) {

Expand Down

0 comments on commit c708e58

Please sign in to comment.