diff options
author | Chocobozzz <me@florianbigard.com> | 2022-06-21 11:16:38 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-06-21 11:23:32 +0200 |
commit | a91e9beb3fa775633fbac21275af39975c212cb0 (patch) | |
tree | f256cea2b08fd9af73c378672a66a0d2165e634a /server/lib | |
parent | 35540f3806b9c7428ba2007928ca811d6caa7677 (diff) | |
download | PeerTube-a91e9beb3fa775633fbac21275af39975c212cb0.tar.gz PeerTube-a91e9beb3fa775633fbac21275af39975c212cb0.tar.zst PeerTube-a91e9beb3fa775633fbac21275af39975c212cb0.zip |
Update server dependencies
Diffstat (limited to 'server/lib')
-rw-r--r-- | server/lib/redis.ts | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/server/lib/redis.ts b/server/lib/redis.ts index 158f3c080..d6d053d2f 100644 --- a/server/lib/redis.ts +++ b/server/lib/redis.ts | |||
@@ -1,4 +1,4 @@ | |||
1 | import { createClient, RedisClientOptions, RedisModules, RedisScripts } from 'redis' | 1 | import { createClient, RedisClientOptions, RedisModules } from 'redis' |
2 | import { exists } from '@server/helpers/custom-validators/misc' | 2 | import { exists } from '@server/helpers/custom-validators/misc' |
3 | import { sha256 } from '@shared/extra-utils' | 3 | import { sha256 } from '@shared/extra-utils' |
4 | import { logger } from '../helpers/logger' | 4 | import { logger } from '../helpers/logger' |
@@ -16,16 +16,12 @@ import { | |||
16 | WEBSERVER | 16 | WEBSERVER |
17 | } from '../initializers/constants' | 17 | } from '../initializers/constants' |
18 | 18 | ||
19 | // Only used for typings | ||
20 | // TODO: remove when https://github.com/microsoft/TypeScript/issues/37181 is fixed | ||
21 | const redisClientWrapperForType = () => createClient<{}, RedisScripts>() | ||
22 | |||
23 | class Redis { | 19 | class Redis { |
24 | 20 | ||
25 | private static instance: Redis | 21 | private static instance: Redis |
26 | private initialized = false | 22 | private initialized = false |
27 | private connected = false | 23 | private connected = false |
28 | private client: ReturnType<typeof redisClientWrapperForType> | 24 | private client: ReturnType<typeof createClient> |
29 | private prefix: string | 25 | private prefix: string |
30 | 26 | ||
31 | private constructor () { | 27 | private constructor () { |