cmather / meteor-file

Meteor file uploading and saving
59 stars 26 forks source link

Remove wait: true when uploading #10

Closed mitar closed 10 years ago

mitar commented 10 years ago

Currently, meteor-file is using wait: true when uploading a file. This influences other asynchronous method calls happening at the same time. For example, testing: https://github.com/meteor/meteor/issues/1579

Why not simply remove this? Server side method should simply allow arbitrary order of calls, which probably all already do as they simply use save() method.

mitar commented 10 years ago

Merged.