summaryrefslogtreecommitdiff
path: root/src/server/api/streaming.ts
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2019-12-15 03:35:09 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2019-12-15 03:35:09 +0900
commit648be3005fd8436a9dbcc43216530677df3337a2 (patch)
tree8d260bd7471b0fea6dab6e55000aef0401df1097 /src/server/api/streaming.ts
parentRedis prefixにホスト名を使用するように (Resolve #5639) (#5640) (diff)
downloadsharkey-648be3005fd8436a9dbcc43216530677df3337a2.tar.gz
sharkey-648be3005fd8436a9dbcc43216530677df3337a2.tar.bz2
sharkey-648be3005fd8436a9dbcc43216530677df3337a2.zip
Fix #5637 (#5638)
Diffstat (limited to 'src/server/api/streaming.ts')
-rw-r--r--src/server/api/streaming.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/api/streaming.ts b/src/server/api/streaming.ts
index 902c62ef98..ee71f4604c 100644
--- a/src/server/api/streaming.ts
+++ b/src/server/api/streaming.ts
@@ -26,7 +26,7 @@ module.exports = (server: http.Server) => {
const subscriber = redis.createClient(
config.redis.port, config.redis.host);
- subscriber.subscribe('misskey');
+ subscriber.subscribe(config.host);
ev = new EventEmitter();