Marc Simon
Marc Simon
@jmcdo29 https://github.com/HomeskilletHealthInc/nestJs_import_rewrite_bug @kamilmysliwiec Using absolute path is, but I don't believe that applies to non-relative path. The code will always compile to the same relative path, independently of the service/computer...
@adrienfloor @elleryfamilia Would you guys have a small test repo I could run? I tried using your versions, but still facing similar issues on ios 14.
@elleryfamilia You're right. With @adrienfloor's update (yours may work too, it is just the last one I tested) and by adding the code to the appDelegate.m, the progress stops but...
@adrienfloor There is a regression in your code. This commit got reverted: https://github.com/HomeskilletHealthInc/react-native-background-upload/commit/d5798e029c2f6a9bbc5a94aba1e3e8cc2d1f2074. I forked your repo and added the commit above and fixed the upload > 100mb here: https://github.com/HomeskilletHealthInc/react-native-background-upload...
Actually..... this commit is breaking the background upload: https://github.com/Vydia/react-native-background-upload/commit/d5798e029c2f6a9bbc5a94aba1e3e8cc2d1f2074 So it's either we have 100mb max upload with background upload or no background upload with unlimited file size. If anyone...
@filipef101 I'm using https://github.com/HomeskilletHealthInc/react-native-background-upload. This works for IOS, and the android code is untouched (it should be working). The issue with ~100Mb upload limit is still present, but 100Mb on...
@Ameer-Muawiya I'll be glad to share, but the code is quite complicated and specifically made to upload to S3 directly. I don't have time to extract it and make it...
@Ameer-Muawiya You can find a gist for the uploadManager here: https://gist.github.com/msimon/b09da5ddcbc4fd98af7797c63a3fd1f0 And a gist for the uploadContext: https://gist.github.com/msimon/be11106eb53ad33e78b7dcd2997beda3 Most of the code is in uploadManager. You probably want to look...
Which version of mongo do you use ? I didn't update the repo since last year. I will try to troubleshoot it tonight if I can. The only reason I...
I found the error. Newer version of MongoDb required parameter for count to be given in precise order. Therefore: db.$cmd.findOne({ "count": {}, "query": {}}) is correct but db.$cmd.findOne({ "query" :...