Skip to content

Commit

Permalink
fix ci errors
Browse files Browse the repository at this point in the history
Signed-off-by: Periyasamy Palanisamy <periyasamy.palanisamy@est.tech>
  • Loading branch information
pperiyasamy committed May 31, 2021
1 parent 994e27d commit 9c2b0c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update-dependent-repositories-gomod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- cmd-forwarder-ovs
- cmd-forwarder-ovs
name: Update ${{ matrix.repository }}
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' && github.actor == 'nsmbot' || github.event_name == 'push' }}
Expand Down
4 changes: 2 additions & 2 deletions pkg/tools/utils/ip.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
package utils

import (
"fmt"
"errors"
"net"
)

Expand Down Expand Up @@ -48,5 +48,5 @@ func ParseTunnelIP(srcIP net.IP) (net.IP, error) {
}
}
}
return nil, fmt.Errorf("error in parsing tunnel ip address: %v", srcIP)
return nil, errors.New("error in parsing tunnel ip address")
}

0 comments on commit 9c2b0c4

Please sign in to comment.