Skip to content

Commit 4f9f1f8

Browse files
authored
Merge branch 'alpha' into specify-createdat
2 parents 902aa33 + 877eede commit 4f9f1f8

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

changelogs/CHANGELOG_alpha.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# [6.3.0-alpha.8](https://github.com/parse-community/parse-server/compare/6.3.0-alpha.7...6.3.0-alpha.8) (2023-08-30)
2+
3+
4+
### Bug Fixes
5+
6+
* Redis 4 does not reconnect after unhandled error ([#8706](https://github.com/parse-community/parse-server/issues/8706)) ([2b3d4e5](https://github.com/parse-community/parse-server/commit/2b3d4e5d3c85cd142f85af68dec51a8523548d49))
7+
18
# [6.3.0-alpha.7](https://github.com/parse-community/parse-server/compare/6.3.0-alpha.6...6.3.0-alpha.7) (2023-08-18)
29

310

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-server",
3-
"version": "6.3.0-alpha.7",
3+
"version": "6.3.0-alpha.8",
44
"description": "An express module providing a Parse-compatible API server",
55
"main": "lib/index.js",
66
"repository": {

src/Adapters/Cache/RedisCacheAdapter.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ export class RedisCacheAdapter {
1717
this.ttl = isValidTTL(ttl) ? ttl : DEFAULT_REDIS_TTL;
1818
this.client = createClient(redisCtx);
1919
this.queue = new KeyPromiseQueue();
20+
this.client.on('error', err => { logger.error('RedisCacheAdapter client error', { error: err }) });
21+
this.client.on('connect', () => {});
22+
this.client.on('reconnecting', () => {});
23+
this.client.on('ready', () => {});
2024
}
2125

2226
async connect() {

0 commit comments

Comments
 (0)