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 d3c6cf9 commit 8b6b446Copy full SHA for 8b6b446
lib/ContextChat/ContextChatProvider.php
@@ -32,9 +32,9 @@
32
*/
33
class ContextChatProvider implements IContentProvider, IEventListener {
34
35
- public const CONTEXT_CHAT_MESSAGE_MAX_AGE = 60 * 60 * 24 * 365;
+ public const CONTEXT_CHAT_MESSAGE_MAX_AGE = 31557600; // 60 * 60 * 24 * 365.25 (1 year)
36
public const CONTEXT_CHAT_IMPORT_MAX_ITEMS = 1000;
37
- public const CONTEXT_CHAT_JOB_INTERVAL = 60 * 5;
+ public const CONTEXT_CHAT_JOB_INTERVAL = 300; // 60 * 5 (5 minutes)
38
39
public function __construct(
40
private TaskService $taskService,
0 commit comments