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
Hey Dallin,
I just wanted to let you know that in node v0.3.5 and later the streams now use the stream.writable boolean instead of the stream.writeable boolean (http://nodejs.org/docs/v0.3.5/api/streams.html#stream.writable).
Thus in s3.js @ line 308:
if(!fileStream.writeable){
should be changed to:
if(!fileStream.writable){
This should not be changed on versions of node before v0.3.5, so maybe there's a better way? Perhaps there's a way to check for the node version?
Thanks for the module btw.
Jason
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey Dallin,
I just wanted to let you know that in node v0.3.5 and later the streams now use the stream.writable boolean instead of the stream.writeable boolean (http://nodejs.org/docs/v0.3.5/api/streams.html#stream.writable).
Thus in s3.js @ line 308:
should be changed to:
This should not be changed on versions of node before v0.3.5, so maybe there's a better way? Perhaps there's a way to check for the node version?
Thanks for the module btw.
Jason
The text was updated successfully, but these errors were encountered: