Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
bc66594b
Commit
bc66594b
authored
May 14, 2022
by
Dominik Hebeler
Browse files
temporarily disabled log gathering (not working)
parent
fecfcaf8
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
metager/app/Console/Kernel.php
View file @
bc66594b
...
...
@@ -2,7 +2,7 @@
namespace
App\Console
;
use
DB
;
use
Illuminate\Support\Facades\
DB
;
use
Illuminate\Console\Scheduling\Schedule
;
use
Illuminate\Foundation\Console\Kernel
as
ConsoleKernel
;
...
...
@@ -26,7 +26,7 @@ class Kernel extends ConsoleKernel
$schedule
->
command
(
'heartbeat'
)
->
everyMinute
();
$schedule
->
command
(
'requests:gather'
)
->
everyFifteenMinutes
();
$schedule
->
command
(
'requests:useragents'
)
->
everyFiveMinutes
();
$schedule
->
command
(
'logs:gather'
)
->
everyMinute
();
//
$schedule->command('logs:gather')->everyMinute();
$schedule
->
command
(
'spam:load'
)
->
everyMinute
();
$schedule
->
command
(
'load:affiliate-blacklist'
)
->
everyMinute
();
$schedule
->
command
(
'affilliates:store'
)
->
everyMinute
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment