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.
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/1579Why 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.