Hi Google Ads Team, I followed the docs to set the max deadline for wait in Ruby GRPC Client. But I see that is not being honored.
``` @client.service.google_ads.configure do |config| config.rpcs.search_stream.timeout = STREAM_TIMEOUT_SECONDS end ``` But when I put a byebug and check in the code execution. `config` do not retains the time limit of `timeout`, means as soon the above block ends `config` just lose the `timeout` field. For example here ``` @client.service.google_ads.configure do |config| config.rpcs.search_stream.timeout = STREAM_TIMEOUT_SECONDS end @client.service.google_ads.configure do |config| byebug end ``` In byebug `config` will no longer have the data we set above. Please Help. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "Google Ads API and AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/812a4669-c00e-4465-8e01-40d61e712a79n%40googlegroups.com.
