Roman Konoval
Roman Konoval
Documentation and the code adds `org.springframework.security:spring-security-test` as dependency to main code in gradle build but it should be a test dependency like it is in maven. This PR fixes that.
This fixes https://github.com/PaulGilmartin/django-pgpubsub/issues/67 Currently for the updated django entity that has an associated TriggerChannel the notification payload is sent via postgres `NOTIFY` and it contains the old and the new...
To facilitate the listener process monitoring several metrics can be exported via [opentelementry API](https://opentelemetry.io/) using ``monitor_listener`` command. They are: - ``notifications-queue.len``: the length of the notification queue, that is the...
Currently for the updated django entity that has an associated `TriggerChannel` the notification payload is sent via postgres `NOTIFY` and it contains the old and the new serialized entity state....
**Problem Statement** This [PR](https://github.com/jazzband/django-simple-history/pull/782) added the feature to exclude index creation for the fields from the original model. Also there's [an option](https://github.com/jazzband/django-simple-history/pull/863) to exclude the index creation for the `history_date`...
While working on a https://github.com/PaulGilmartin/django-pgpubsub/pull/81 I've noticed that the LISTEN initiation does not follow the guidelines from the https://www.postgresql.org/docs/current/sql-listen.html. Here's the quote: > There is a race condition when first...
This is a workaround for the bug in psycopg2 described [here](https://github.com/psycopg/psycopg2/issues/1727) This adds additional polling after the notification processing.
In https://github.com/PaulGilmartin/django-pgpubsub/pull/73 ability to set notification context was added. That implementation had a limitation namely it allowed to override complete context. In some scenarios it is convenient to update the...