Update pkg/cluster/util.go

This commit is contained in:
Felix Kunde 2022-04-13 19:29:18 +02:00 committed by GitHub
parent 22b3e9a2e2
commit b5b6f41692
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ func (c *Cluster) getTeamMembers(teamID string) ([]string, error) {
teamInfo, statusCode, err := c.teamsAPIClient.TeamInfo(teamID, token)
if err != nil {
if statusCode == 404 {
if statusCode == http.StatusNotFound {
c.logger.Warningf("could not get team info for team %q: %v", teamID, err)
} else {
return nil, fmt.Errorf("could not get team info for team %q: %v", teamID, err)