Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,16 @@ def self.configure
initial_delay: 1.0, max_delay: 60.0, multiplier: 2, retry_codes: [14]
}

default_config.rpcs.list_bucket_operations.timeout = 60.0
default_config.rpcs.list_bucket_operations.retry_policy = {
initial_delay: 1.0, max_delay: 60.0, multiplier: 2, retry_codes: [14]
}

default_config.rpcs.get_bucket_operation.timeout = 60.0
default_config.rpcs.get_bucket_operation.retry_policy = {
initial_delay: 1.0, max_delay: 60.0, multiplier: 2, retry_codes: [14]
}

default_config
end
yield @configure if block_given?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,16 @@ def self.configure
initial_delay: 1.0, max_delay: 60.0, multiplier: 2, retry_codes: [14]
}

default_config.rpcs.list_bucket_operations.timeout = 60.0
default_config.rpcs.list_bucket_operations.retry_policy = {
initial_delay: 1.0, max_delay: 60.0, multiplier: 2, retry_codes: [14]
}

default_config.rpcs.get_bucket_operation.timeout = 60.0
default_config.rpcs.get_bucket_operation.retry_policy = {
initial_delay: 1.0, max_delay: 60.0, multiplier: 2, retry_codes: [14]
}

default_config
end
yield @configure if block_given?
Expand Down
Loading
Loading