We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4c0e5 commit e037257Copy full SHA for e037257
config/config.template.js
@@ -9,7 +9,7 @@ export default {
9
vote_webhook_secret: "",
10
wolfram_appid: "",
11
bot_owner_ids: [],
12
- total_shards: /** @type {number | "auto" | undefined} */ ("auto"),
+ total_shards: /** @type {number | "auto" | undefined} */ (1),
13
},
14
http: {
15
port: 1335,
src/app.js
@@ -15,7 +15,7 @@ EventEmitter.defaultMaxListeners = 20;
16
const manager = new ClusterManager("./src/bot.js", {
17
totalShards: config.discord.total_shards,
18
- shardsPerClusters: 2,
+ shardsPerClusters: 1,
19
token: config.discord.bot_token,
20
});
21
0 commit comments