Tobias Krönke
Tobias Krönke
what would be the benefit? without pagination, the whole queryset will be listed anyway, right? so the current code version is already optimized and saves the `count()` call.
Meanwhile you can monkey patch around this issue by calling this method in your module: ```python def patch_pattern(): from pattern import text original_read = text._read @functools.wraps(original_read) def patched_read(*args, **kwargs): try:...
It would be awesome to see this happen! :-)
> What about adding another column to store the md5sum of the name, and add unique=True on this column, because md5sum is fixed-length (32 chars), its behavior is predictable. I...
It's quite unfortunate, the build failed just because of an unrelated `RemovedInSphinx20Warning`. Apart from that you can now see in the build logs that we successfully tested the new setting...
will it help? the last `master` build also failed: https://travis-ci.org/celery/django-celery-beat/builds/513951725?utm_source=github_status&utm_medium=notification
It would still be nice to see this upstream. Does anything speak against this change?
> Any hints on why the "entrypoint.sh" script does this copying? Whats the reason for this setup? @hoermannklaus See https://github.com/matomo-org/docker/blob/master/Dockerfile-debian.template#L99 and combine that piece of information with https://hub.docker.com/_/matomo:  The...
We're using bitnami's matomo docker image (https://hub.docker.com/r/bitnami/matomo) and we can only suggest you to use it, too. All you need to do here is specify `/bitnami/matomo` as the volume (see...
We actually acknowledge that as a blackbox, just like matomo's code is a blackbox to us. But we trust in bitnami's competency and looking at the scripts their setup seems...