Florian Apolloner

Results 68 issues of Florian Apolloner

This PR adds support for proxy protocol v2 (v1 keeps working as well): https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt Additionally I did rewrite the `BytesIO` usage to `bytearray`, the code becomes simpler imo because we...

Feature/Http

## What is the idea ? I'd love to provide an optimized `Dockerfile` for ARA that can be easily built (and preferably also shipped to dockerhub during releases). What would...

packaging

## What is the idea ? When running ara in distributed sqlite mode against a few databases of mine it complained that a few fields are missing. This makes sense...

enhancement
database

- [x] Redmine Issue: https://redmine.pfsense.org/issues/4728 - [x] Ready for review

Discussion
Needs to be tested

Currently the whole request body is buffered in memory even when it doesn't have to be: https://github.com/pgjones/hypercorn/blob/c0468e555c6e6617dd92377c2c2efff862268de7/src/hypercorn/app_wrappers.py#L70 `a2wsgi` utilizes a thread pool to properly stream this in. Would this be...

It would be great if hypercorn could support the proxy protocol (https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt). This is generally a good alternative to the `x-forward-*` headers. Would this be something that you'd be willing...

### Bug Description I have an entry with an end date, and yet the calendar shows the item only over a single day (see screenshot) The card should expand to...

improvements
calendar

Cosa writes the current config source into the ociarchive: https://github.com/coreos/coreos-assembler/blob/3ad4cf5c33dfc6b53dd07f50058767cc3525a3e6/src/cmd-build#L447 In my case this ends up as: ``` "org.opencontainers.image.source": "https://gitlab-ci-token:[email protected]", ``` since I am building in gitlab CI which uses...

PyOtherSideQtRCImporter needs to implement find_spec since find_module is no longer supported. https://docs.python.org/3.11/library/importlib.html#importlib.abc.MetaPathFinder.find_module shows it is deprecated since 3.4 (the link shows the 3.11 docs) and it was removed in 3.12.