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
If I use a simple RetryPolicyFilter as follows, when a retry is actually necessary, I get a nilClass exception because retry_data[:count] is nil. Am I using RetryPolicyFilter improperly? It seems like perhaps retry_data[:count] needs to be set to 0 in init_retry_data( )
/home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-common-2.0.1/lib/azure/storage/common/core/filter/retry_filter.rb:58:in `should_retry?': undefined method `<=' for nil:NilClass (NoMethodError)
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-common-2.0.1/lib/azure/core/http/retry_policy.rb:51:in `call'
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-common-2.0.1/lib/azure/core/http/http_request.rb:110:in `block in with_filter'
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-common-2.0.1/lib/azure/core/http/signer_filter.rb:28:in `call'
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-common-2.0.1/lib/azure/core/http/signer_filter.rb:28:in `call'
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-common-2.0.1/lib/azure/core/http/http_request.rb:110:in `block in with_filter'
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-common-2.0.1/lib/azure/core/service.rb:36:in `call'
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-common-2.0.1/lib/azure/core/filtered_service.rb:34:in `call'
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-common-2.0.1/lib/azure/core/signed_service.rb:41:in `call'
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-common-2.0.1/lib/azure/storage/common/service/storage_service.rb:60:in `call'
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-blob-2.0.0/lib/azure/storage/blob/blob_service.rb:179:in `call'
from /home/jbeyer/.rvm/gems/ruby-2.4.10/gems/azure-storage-blob-2.0.0/lib/azure/storage/blob/block.rb:149:in `put_blob_block'
from test_video_upload.rb:70:in `block (3 levels) in <main>'
from test_video_upload.rb:13:in `each_chunk'
from test_video_upload.rb:60:in `block (2 levels) in <main>'
from /home/jbeyer/.rvm/rubies/ruby-2.4.10/lib/ruby/2.4.0/open-uri.rb:37:in `open'
from /home/jbeyer/.rvm/rubies/ruby-2.4.10/lib/ruby/2.4.0/open-uri.rb:37:in `open'
from test_video_upload.rb:59:in `block in <main>'
from test_video_upload.rb:47:in `each'
from test_video_upload.rb:47:in `<main>'
The text was updated successfully, but these errors were encountered:
If I use a simple RetryPolicyFilter as follows, when a retry is actually necessary, I get a nilClass exception because retry_data[:count] is nil. Am I using RetryPolicyFilter improperly? It seems like perhaps retry_data[:count] needs to be set to 0 in init_retry_data( )
The text was updated successfully, but these errors were encountered: