Michael Buckley

Results 12 comments of Michael Buckley

Hi. Can you check docker to make sure you are running a native `linux/arm64` image? You may be running a `linux/amd64` image in x86 emulation.

We have a test annotation in Hapi -- `@RequiresDocker` . If you add that to this test, it will be skipped when docker isn't present. All tests that use docker...

Hello Sidharth. Thank you for the bug report. First problem - missing entries. That is a bug, and I'll look into reproducing it. For now, I recommend disabling `hapi.fhir.store_resource_in_lucene_index_enabled`. It...

It is an awkward gap in the spec. You are not first person to be surprised by this. Please submit a PR to improve the documentation. As for disabling lucene...

This one looks related - https://github.com/hapifhir/hapi-fhir/issues/866

This bug got fixed elsewhere by limiting the ES prefetch- https://github.com/hapifhir/hapi-fhir/issues/860 See also https://github.com/hapifhir/hapi-fhir/issues/536 A modification of #866 is drop the pid, and use a composite PK - (search_pid, search_order)....

+1 PlantUML turns a message into a create message with a line before. E.g. ```plantuml create Persistence Booter -> Persistence : create message ```

Thanks @nicorch. I'm using `libmime.decodeWords(filename).normalize()` as a workaround. The rest of the headers returned by node-imap are decoded by internally. I suspect this won't get fixed until I write a...

Modern sql has added the ANY keyword, that is like IN, but more general. It modifies a comparison, and distributes it over either an array or a select. So ```sql...

If you add a timeout to the ConnectionData, you could configure it when building the ConnectionHub. That is passed all the way down to the ConnectionFactory.