Attempt to catch Sending we got an EXCEPTION when in maintenance mode
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 40s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m50s
Create Docker Image / Final Docker Image Manifest (push) Successful in 10s

This commit is contained in:
Deon George 2024-06-26 12:18:06 +10:00
parent 176ecb16a8
commit db8475053c

View File

@ -177,8 +177,8 @@ final class Binkp extends BaseProtocol
$this->msgs(self::BPM_BSY,'RETRY 0600: Down for maintenance, back soon...'); $this->msgs(self::BPM_BSY,'RETRY 0600: Down for maintenance, back soon...');
while ($this->tx_left || $this->mqueue->count()) // @note Sometimes the remote drops the connection when we send the busy
$this->binkp_send(); while (($this->tx_left || $this->mqueue->count()) && $this->binkp_send()) {}
return FALSE; return FALSE;
} }