Bryan Tarpley

Results 7 comments of Bryan Tarpley

I'm having this same problem. I'm running the standalone version in a docker container. The process is still active and doesn't appear to be consuming much memory, but within a...

@adolski I'm not a Java developer--how difficult is the process you just described (using Minio instead of Java SDK)? Where would you recommend I read up on this? I manage...

I did not figure this out. In fact, we tried Loris IIIF (Python) and are still having issues like this. I suspect it might have something to do with the...

@lmaylein I finally think I've figured this out. TL;DR: Use Cantaloupe 4.3.1. Use JVM >= 10 and set reasonable XX:MaxRAMPercentage and XX:InitialRAMPercentage flags. Allocate the container more than 2g of...

I'm having this same issue with release 0.19.1. I have an embedded document as a mapfield inside another embedded document inside a mapfield, ie: ``` class File(EmbeddedDocument): path = StringField()...

FWIW, am temporarily working around this issue like so: ``` f = File() f.path = '/some/path' p = Page() p.files['1'] = f d = Doc.objects(id='someid')[0] d.modify(**{'set__pages__1': p}) ```

Okay, so after a lot of sleuthing, it looks like FilePond is setting the CONTENT_TYPE header to "application%2Foffset%2Boctet-stream" which looks like a URL encoded version of the expected "application/offset+octet-stream". Here's...