Commit 53982bc2 by Vladislav

change schedule

1 parent 2d380372
Showing with 4 additions and 2 deletions
......@@ -83,6 +83,8 @@ class Kernel extends ConsoleKernel
$schedule->command(AudienceTargetsDelete::class)->hourlyAt(10);
/* должен быть перед AdGroupsDelete */
$schedule->command(KeywordsDelete::class)->hourlyAt(10);
/* должен быть перед AdGroupsDelete */
$schedule->command(AdvertisementsDelete::class)->hourlyAt(10);
$schedule->command(RetargetinglistsLoad::class)->hourlyAt(5);
$schedule->command(RetargetinglistsUpdate::class)->hourlyAt(10);
......@@ -114,9 +116,10 @@ class Kernel extends ConsoleKernel
$schedule->command(NegativeKeywordSharedSetsUpdate::class)->hourlyAt(35);
$schedule->command(RetargetinglistsAdd::class)->hourlyAt(35);
$schedule->command(RetargetinglistsUpdate::class)->hourlyAt(35);
$schedule->command(AdGroupsDelete::class)->hourlyAt(30);
$schedule->command(AdGroupsAdd::class)->hourlyAt(35);
$schedule->command(AdGroupsUpdate::class)->hourlyAt(35);
$schedule->command(AdGroupsDelete::class)->hourlyAt(35);
$schedule->command(BidModifiersDelete::class)->hourlyAt(30);
......@@ -126,7 +129,6 @@ class Kernel extends ConsoleKernel
$schedule->command(KeywordsAdd::class)->hourlyAt(40);
$schedule->command(KeywordsUpdate::class)->hourlyAt(40);
$schedule->command(AdvertisementsDelete::class)->hourlyAt(45);
$schedule->command(AdvertisementsAdd::class)->hourlyAt(50);
$schedule->command(AdvertisementsUpdate::class)->hourlyAt(50);
$schedule->command(AdvertisementsArchive::class)->hourlyAt(50);
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!