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
I have a ruby script that pulls out statistics from Azure table storage.
Once in a while i get a 403 Forbidden (RestClient::Forbidden)
The line that always fails is:
mbData = service.query('DataAzureTable', {:expression => "(AuthToken eq '"+customer[:AuthToken]+"')"} )
I'am running the waz-storage 1.3.3
My question is this: I noticed there was a new option called retry_count.
Would this be the right strategy to use, since its probably an azure random glitch.
How to use the option is not in the documentation yet, would be helpful.
Thanks for a great piece of software!
The text was updated successfully, but these errors were encountered:
If one of these errors happens when you are sending a big file to Azure Storage,
one request is only a chunk of a file, so it doesn't mean to retry from the beginning.
I'm not sending nor getting files at all, only retrieving basic information from a table.
Where does the argument go e.g.:
mbData = service.query('DataAzureTable', {:retry_count => 5, :expression => "(AuthToken eq '"+customer[:AuthToken]+"')"} )
I have a ruby script that pulls out statistics from Azure table storage.
Once in a while i get a 403 Forbidden (RestClient::Forbidden)
The line that always fails is:
mbData = service.query('DataAzureTable', {:expression => "(AuthToken eq '"+customer[:AuthToken]+"')"} )
I'am running the waz-storage 1.3.3
My question is this: I noticed there was a new option called retry_count.
Would this be the right strategy to use, since its probably an azure random glitch.
How to use the option is not in the documentation yet, would be helpful.
Thanks for a great piece of software!
The text was updated successfully, but these errors were encountered: