Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit 5950cb6

Browse files
committed
fix(review/1): event reasons
Signed-off-by: Mateusz Urbanek <[email protected]>
1 parent be28c72 commit 5950cb6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Diff for: controller/events/events.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ package events
22

33
// COSI relevant event reasons
44
const (
5-
BucketDeleteFailed = "BucketDeleteFailed"
6-
GrantingAccessFailed = "GrantingAccessFailed"
7-
ProvisioningFailed = "ProvisioningFailed"
8-
RevokingAccessFailed = "RevokingAccessFailed"
9-
WaitingForBucket = "WaitingForBucket"
5+
FailedCreateBucket = "FailedCreateBucket"
6+
FailedDeleteBucket = "FailedDeleteBucket"
7+
WaitingForBucket = "WaitingForBucket"
8+
9+
FailedGrantAccess = "FailedGrantAccess"
10+
FailedRevokeAccess = "FailedRevokeAccess"
1011
)

0 commit comments

Comments
 (0)