We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Gemfile gem 'waz-storage', '~> 1.3.6'
In Controller
require 'waz-blobs'
WAZ::Storage::Base.establish_connection!( :account_name => "name", :access_key => "key" ) container = WAZ::Blobs::Container.create('container') # Give Error Here blob = container.store('myfile.txt',"THIS IS TEST",'plain/text')
if I try to create blobs as follow Error: RestClient::ResourceNotFound, 404 Resource Not Found
container = WAZ::Blobs::Container.new(:name=>'container') blob = container.store('myfile.txt',"THIS IS TEST",'plain/text') # Give Error Here
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In Gemfile
gem 'waz-storage', '~> 1.3.6'
In Controller
require 'waz-blobs'
WAZ::Storage::Base.establish_connection!(
:account_name => "name",
:access_key => "key"
)
container = WAZ::Blobs::Container.create('container') # Give Error Here
blob = container.store('myfile.txt',"THIS IS TEST",'plain/text')
if I try to create blobs as follow
Error: RestClient::ResourceNotFound, 404 Resource Not Found
container = WAZ::Blobs::Container.new(:name=>'container')
blob = container.store('myfile.txt',"THIS IS TEST",'plain/text') # Give Error Here
The text was updated successfully, but these errors were encountered: