Pēteris Caune
Pēteris Caune
### Discussed in https://github.com/healthchecks/healthchecks/discussions/1029 Originally posted by **StephenWetzel** July 19, 2024 On the main list of checks, in the "Last Ping" column, right now they are all relative times, like...
### Discussed in https://github.com/healthchecks/healthchecks/discussions/1031 Originally posted by **AbelLykens** July 19, 2024  Would be nice if the `30 minutes` / `1 hour` / `1 day` etc were clickable so it's...
In the past couple days I've seen two cases of signal-cli RPC returning error code "-32603". In both cases, in signal-cli logs I see a traceback: ``` org.signal.libsignal.protocol.InvalidSessionException: Session not...
The type annotation for Session.peer is currently: ``` self.peer: Optional[str] = None ``` This attribute appears to be set in `connection_made()` like so: ``` self.session.peer = transport.get_extra_info("peername") ``` Where transport...
From README: > The default official Docker PostgreSQL image is Debian Linux based, and upgrading from that to one of our Alpine Linux based images doesn't always work out well....
I followed the instructions in the "BUILDING" section in README: ``` git clone [email protected]:aio-libs/aiosmtpd.git python3 -m venv .venv source .venv/bin/activate python setup.py install ``` This produces: ``` Traceback (most recent...
## What do these changes do? This change hopefully fixes test `aiosmtpd.qa.test_0packaging.TestVersion.test_ge_master`. The test runs `git show master:aiosmtpd/__init__.py` command, and the command fails if the master branch does not exist...
## What do these changes do? This implements `_FakeServer.connection_made()` which immediately closes client connections. Without this, if the SMTP server throws an exception during initialization, Controller.stop() gets stuck indefinitely waiting...
## What do these changes do? Updates the type annotation for the `Session.peer` field. The annotation was "str or None". I think the correct annotation should be "tuple[str, int] or...
### Problem I want to be alerted when PostgreSQL replication lag on a replica grows above some threshold value. The replica not being up to date with the primary is...