You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, I was trying to use the timeout configuration api parameter that was added in the 21.12 release and was not sure if I'm understanding its intended usage correctly. Our initializer is set up as follows:
AsposeWordsCloud.configure do |config|
config.client_data['ClientSecret'] = ...
config.client_data['ClientId'] = ...
config.timeout = 120
end
I would like to extend the timeout for my requests to be greater than 60 seconds as specified in the configuration, but the api client makes it seem like the request will timeout at lesser of 60 seconds (from the default adapter) or the configured timeout (120 seconds in in my case).
We noticed that the timeout property was not working as expected in Aspose.Words Cloud SDK for Ruby and fixed it. The fix will be available in the July 2022 release of Aspose.Words Cloud SDK for Ruby.
Hi there, I was trying to use the
timeout
configuration api parameter that was added in the21.12
release and was not sure if I'm understanding its intended usage correctly. Our initializer is set up as follows:It looks like the default adapter is Net Http for Faraday 1.10.0 which has a default timeout of 60 seconds.
I would like to extend the timeout for my requests to be greater than 60 seconds as specified in the configuration, but the api client makes it seem like the request will timeout at lesser of 60 seconds (from the default adapter) or the configured timeout (120 seconds in in my case).
Is there an existing way to specify the request timeout for Faraday when initializing the connection in the ruby sdk? Something with the same effect as
The text was updated successfully, but these errors were encountered: