Skip to content

Commit

Permalink
Merge pull request #893 from tsg-ut/less-cfb
Browse files Browse the repository at this point in the history
context-free-botの投稿頻度を10分の1に変更
  • Loading branch information
hakatashi authored May 8, 2024
2 parents 55b89f7 + c9b0e2c commit 17f52c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion context-free/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const composePost = async (message: string): Promise<string> => {
};

const randomInterval = () =>
1000 * 60 * (90 + (Math.random() - 0.5) * 2 * 60);
1000 * 60 * (60 * 15 + (Math.random() - 0.5) * 2 * 60);

export const server = ({eventClient, webClient: slack}: SlackInterface) => plugin(async (fastify) => {
const postWord = async () => {
Expand Down

0 comments on commit 17f52c8

Please sign in to comment.