Skip to content

Commit

Permalink
removing operation timeout changes
Browse files Browse the repository at this point in the history
  • Loading branch information
willdavsmith committed Sep 21, 2023
1 parent a82e9fc commit 9301bf1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/datastoresrp/frontend/controller/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ const (
OperationListSecret = "LISTSECRETS"

// AsyncCreateOrUpdateMongoDatabaseTimeout is the timeout for async create or update Mongo database
AsyncCreateOrUpdateMongoDatabaseTimeout = time.Duration(60) * time.Minute
AsyncCreateOrUpdateMongoDatabaseTimeout = time.Duration(10) * time.Minute
// AsyncDeleteMongoDatabaseTimeout is the timeout for async delete Mongo database
AsyncDeleteMongoDatabaseTimeout = time.Duration(30) * time.Minute
AsyncDeleteMongoDatabaseTimeout = time.Duration(15) * time.Minute

// AsyncCreateOrUpdateRedisCacheTimeout is the timeout for async create or update Redis cache
AsyncCreateOrUpdateRedisCacheTimeout = time.Duration(60) * time.Minute
AsyncCreateOrUpdateRedisCacheTimeout = time.Duration(10) * time.Minute
// AsyncDeleteRedisCacheTimeout is the timeout for async delete Redis cache
AsyncDeleteRedisCacheTimeout = time.Duration(30) * time.Minute
AsyncDeleteRedisCacheTimeout = time.Duration(15) * time.Minute

// AsyncCreateOrUpdateDaprStateStoreTimeout is the timeout for async create or update dapr state store
AsyncCreateOrUpdateDaprStateStoreTimeout = time.Duration(60) * time.Minute
Expand Down

0 comments on commit 9301bf1

Please sign in to comment.