Skip to content

Commit b17337e

Browse files
committed
fix statusDeletingFailed in scf waiter
1 parent 47caeff commit b17337e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/scf/wait/wait.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func DeleteOrganizationWaitHandler(ctx context.Context, a APIClientInterface, pr
3434
if s == nil {
3535
return false, nil, errors.New("organization is nil")
3636
}
37-
if *s.Status == status_deleting_failed {
37+
if *s.Status == statusDeletingFailed {
3838
return true, nil, fmt.Errorf("delete failed for Organization with id %s", orgId)
3939
}
4040
return false, s, nil

0 commit comments

Comments
 (0)