refactor: Bump redis from 4.7.0 to 5.10.0 (#9994)

This commit is contained in:
dependabot[bot]
2026-01-17 22:09:44 +01:00
committed by GitHub
parent 82e0d3ace1
commit ba3e7602e6
6 changed files with 77 additions and 97 deletions

View File

@@ -109,9 +109,9 @@ class ParseLiveQueryServer {
this.subscriber.close?.(),
]);
}
if (typeof this.subscriber.quit === 'function') {
if (typeof this.subscriber.close === 'function') {
try {
await this.subscriber.quit();
await this.subscriber.close();
} catch (err) {
logger.error('PubSubAdapter error on shutdown', { error: err });
}