Sha256: fb75d8d3f6bbcda9034cc44fab1bd9f6cc099597ca187a05716dc0ff451eec0f
Contents?: true
Size: 485 Bytes
Versions: 1062
Compression:
Stored size: 485 Bytes
Contents
module Aws module Plugins # Extends the default read-timeout value class SWFReadTimeouts < Seahorse::Client::Plugin class Handler < Seahorse::Client::Handler def call(context) context.config = context.config.dup context.config.http_read_timeout = 90 @handler.call(context) end end handler(Handler, operations: [ :poll_for_activity_task, :poll_for_decision_task, ]) end end end
Version data entries
1,062 entries across 1,062 versions & 2 rubygems