Here is some code to help understand the problem. I am trying to have independant package registering scheduled tasks and so far all I could do was running the tasks in the kernel and one of my package tasks. When I have more than one package registering tasks, only one package and the app kernel run it's task. When I deactivate the package that the task run (for example the package "something"), the other package "console" run his task along with the app Kernel tasks. So my question is what do I do wrong to have multiple package able to run their own tasks. Thanks!
I get this in the schedule.log file:
PACKAGE NAME IS project
PACKAGE NAME IS something
PACKAGE NAME IS project
PACKAGE NAME IS something
Here is the source of the important you need to see to understand my problem.
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
/**
* @see https://laravel.com/docs/5.2/scheduling
*/
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
Commands\TestCommand::class
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
$schedule->command('test:command project')->everyMinute()->appendOutputTo(base_path('schedule.log'));
}
}
This is only to debug that the task has been run. I am running a tail -f schedule.log in my terminal and see the execution every minute.
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class TestCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'test:command {name}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$name = $this->argument('name');
$this->info('PACKAGE NAME IS '.$name);
}
}
<?php
namespace Myproject\Console\Providers;
use Illuminate\Support\ServiceProvider;
class ConsoleServiceProvider extends ServiceProvider
{
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;
/**
* List of commands supplied by this package
*/
protected $myCommands = [];
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
if (isset($this->myCommands[0]) && $this->app->runningInConsole()) {
$this->commands($this->myCommands);
}
// http://stackoverflow.com/questions/35834681/laravel-5-package-scheduled-tasks
$this->app->singleton('myproject.console.console.kernel', function($app) {
$dispatcher = $app->make(\Illuminate\Contracts\Events\Dispatcher::class);
return new \Myproject\Console\Console\Kernel($app, $dispatcher);
});
$this->app->make('myproject.console.console.kernel');
}
}
<?php
namespace Myproject\Something\Providers;
use Illuminate\Support\ServiceProvider;
class SomethingServiceProvider extends ServiceProvider
{
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;
/**
* List of commands supplied by this package
*/
protected $myCommands = [];
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
if (isset($this->myCommands[0]) && $this->app->runningInConsole()) {
$this->commands($this->myCommands);
}
// http://stackoverflow.com/questions/35834681/laravel-5-package-scheduled-tasks
$this->app->singleton('myproject.something.console.kernel', function($app) {
$dispatcher = $app->make(\Illuminate\Contracts\Events\Dispatcher::class);
return new \Myproject\Something\Console\Kernel($app, $dispatcher);
});
$this->app->make('myproject.something.console.kernel');
}
}
<?php
namespace Myproject\Console\Console;
use App\Console\Kernel as ConsoleKernel;
use Illuminate\Console\Scheduling\Schedule;
/**
* @see https://laravel.com/docs/5.2/scheduling
*/
class Kernel extends ConsoleKernel
{
/**
* Define the package's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
parent::schedule($schedule);
$schedule->command('test:command console')->everyMinute()->appendOutputTo(base_path('schedule.log'));
}
}
<?php
namespace Myproject\Something\Console;
use App\Console\Kernel as ConsoleKernel;
use Illuminate\Console\Scheduling\Schedule;
/**
* @see https://laravel.com/docs/5.2/scheduling
*/
class Kernel extends ConsoleKernel
{
/**
* Define the package's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
parent::schedule($schedule);
$schedule->command('test:command something')->everyMinute()->appendOutputTo(base_path('schedule.log'));
}
}
http://www.charlottevslouisvillelive.us/
http://www.appalachianstatevstennesseelive.us/
http://www.presbyteriancollegevscentralmichiganlive.us/
http://www.mainevsconnecticutlive.us/
http://www.williammaryvsncstatelive.us/
http://www.southcarolinavsvanderbiltlive.us/
http://www.southernutahvsutahlive.us/
http://www.ricevswesternvskentuckylive.us/
http://www.oregonstatevsminnesotalive.us/
http://www.southdakotavsnewmexico.us/
http://www.montanastatevsidaholive.us/
http://www.furmanvsmichiganstatelive.us/
http://www.northwesternstatevsbaylorlive.us/
http://www.kansasstatevsstanfordlive.us/
http://www.ballstatevsgeorgiastatelive.us/
http://www.albanyvsbuffalolive.us/
http://www.colgatevssyracuselive.us/
http://www.armyvstemplelive.us/
http://www.coloradostatevscoloradolive.us/
http://www.toledovsarkansasstatelive.us/
http://www.oklahomavshoustonlive.us/
http://www.bowlinggreenvsohiostatelive.us/
http://www.hawaiivsmichiganlive.us/
http://www.rutgersvswashingtonlive.us/
http://www.georgiatechvsbostoncollegelive.us/
http://www.fordhamvsnavylive.us/
http://www.westernmichiganvsnorthwesternlive.us/
http://www.boisestatevslouisianalafayettelive.us/
http://www.missourivswestvirginialive.us/
http://www.howardvsmarylandlive.us/
http://www.libertyvsvirginiatechlive.us/
http://www.villanovavspittsburghlive.us/
http://www.abilenechristianvsairforcelive.us/
http://www.richmondvsvirginialive.us/
http://www.kentstatevspennstatelive.us/
http://www.southernillinoisvsfloridaatlanticlive.us/
http://www.hamptonvsolddominionlive.us/
http://www.floridaamvsmiamilive.us/
http://www.savannahstatevsgeorgiasouthernlive.us/
http://www.austinpeayvstroylive.us/
http://www.alabamaamvsmiddletennesseelive.us/
http://www.smuvsnorthtexaslive.us/
http://www.sanjosestatevstulsalive.us/
http://www.southernmississippivskentuckylive.us/
http://www.northerniowavsiowastatelive.us/
http://www.fresnostatevsnebraskalive.us/
http://www.easternwashingtonvswashingtonstatelive.us/
http://www.newmexicostatevsuteplive.us/
http://www.newhampshirevssandiegostatelive.us/
http://www.arizonavsbyulive.us/
http://www.northernillinoisvswyominglive.us/
http://www.uclavstexasamlive.us/
http://www.lsuvswisconsinlive.us/
http://www.miamiohvsiowalive.us/
http://www.southeasternlouisianavsoklahomastatelive.us/
http://www.ucdavisvsoregonlive.us/
http://www.georgiavsnorthcarolinalive.us/
http://www.massachusettsvsfloridalive.us/
http://www.uscvsalabamalive.us/
http://www.southdakotastatevstculive.us/
http://www.clemsonvsauburnlive.us/
http://www.notredamevstexaslive.us/
date:05-09-16
http://www.charlottevslouisvillelive.us/
http://www.appalachianstatevstennesseelive.us/
http://www.presbyteriancollegevscentralmichiganlive.us/
http://www.mainevsconnecticutlive.us/
http://www.williammaryvsncstatelive.us/
http://www.southcarolinavsvanderbiltlive.us/
http://www.southernutahvsutahlive.us/
http://www.ricevswesternvskentuckylive.us/
http://www.oregonstatevsminnesotalive.us/
http://www.southdakotavsnewmexico.us/
http://www.montanastatevsidaholive.us/
http://www.furmanvsmichiganstatelive.us/
http://www.northwesternstatevsbaylorlive.us/
http://www.kansasstatevsstanfordlive.us/
http://www.ballstatevsgeorgiastatelive.us/
http://www.albanyvsbuffalolive.us/
http://www.colgatevssyracuselive.us/
http://www.armyvstemplelive.us/
http://www.coloradostatevscoloradolive.us/
http://www.toledovsarkansasstatelive.us/
http://www.oklahomavshoustonlive.us/
http://www.bowlinggreenvsohiostatelive.us/
http://www.hawaiivsmichiganlive.us/
http://www.rutgersvswashingtonlive.us/
http://www.georgiatechvsbostoncollegelive.us/
http://www.fordhamvsnavylive.us/
http://www.westernmichiganvsnorthwesternlive.us/
http://www.boisestatevslouisianalafayettelive.us/
http://www.missourivswestvirginialive.us/
http://www.howardvsmarylandlive.us/
http://www.libertyvsvirginiatechlive.us/
http://www.villanovavspittsburghlive.us/
http://www.abilenechristianvsairforcelive.us/
http://www.richmondvsvirginialive.us/
http://www.kentstatevspennstatelive.us/
http://www.southernillinoisvsfloridaatlanticlive.us/
http://www.hamptonvsolddominionlive.us/
http://www.floridaamvsmiamilive.us/
http://www.savannahstatevsgeorgiasouthernlive.us/
http://www.austinpeayvstroylive.us/
http://www.alabamaamvsmiddletennesseelive.us/
http://www.smuvsnorthtexaslive.us/
http://www.sanjosestatevstulsalive.us/
http://www.southernmississippivskentuckylive.us/
http://www.northerniowavsiowastatelive.us/
http://www.fresnostatevsnebraskalive.us/
http://www.easternwashingtonvswashingtonstatelive.us/
http://www.newmexicostatevsuteplive.us/
http://www.newhampshirevssandiegostatelive.us/
http://www.arizonavsbyulive.us/
http://www.northernillinoisvswyominglive.us/
http://www.uclavstexasamlive.us/
http://www.lsuvswisconsinlive.us/
http://www.miamiohvsiowalive.us/
http://www.southeasternlouisianavsoklahomastatelive.us/
http://www.ucdavisvsoregonlive.us/
http://www.georgiavsnorthcarolinalive.us/
http://www.massachusettsvsfloridalive.us/
http://www.uscvsalabamalive.us/
http://www.southdakotastatevstculive.us/
http://www.clemsonvsauburnlive.us/
http://www.notredamevstexaslive.us/
date:05-09-16
http://www.charlottevslouisvillelive.us/
http://www.appalachianstatevstennesseelive.us/
http://www.presbyteriancollegevscentralmichiganlive.us/
http://www.mainevsconnecticutlive.us/
http://www.williammaryvsncstatelive.us/
http://www.southcarolinavsvanderbiltlive.us/
http://www.southernutahvsutahlive.us/
http://www.ricevswesternvskentuckylive.us/
http://www.oregonstatevsminnesotalive.us/
http://www.southdakotavsnewmexico.us/
http://www.montanastatevsidaholive.us/
http://www.furmanvsmichiganstatelive.us/
http://www.northwesternstatevsbaylorlive.us/
http://www.kansasstatevsstanfordlive.us/
http://www.ballstatevsgeorgiastatelive.us/
http://www.albanyvsbuffalolive.us/
http://www.colgatevssyracuselive.us/
http://www.armyvstemplelive.us/
http://www.coloradostatevscoloradolive.us/
http://www.toledovsarkansasstatelive.us/
http://www.oklahomavshoustonlive.us/
http://www.bowlinggreenvsohiostatelive.us/
http://www.hawaiivsmichiganlive.us/
http://www.rutgersvswashingtonlive.us/
http://www.georgiatechvsbostoncollegelive.us/
http://www.fordhamvsnavylive.us/
http://www.westernmichiganvsnorthwesternlive.us/
http://www.boisestatevslouisianalafayettelive.us/
http://www.missourivswestvirginialive.us/
http://www.howardvsmarylandlive.us/
http://www.libertyvsvirginiatechlive.us/
http://www.villanovavspittsburghlive.us/
http://www.abilenechristianvsairforcelive.us/
http://www.richmondvsvirginialive.us/
http://www.kentstatevspennstatelive.us/
http://www.southernillinoisvsfloridaatlanticlive.us/
http://www.hamptonvsolddominionlive.us/
http://www.floridaamvsmiamilive.us/
http://www.savannahstatevsgeorgiasouthernlive.us/
http://www.austinpeayvstroylive.us/
http://www.alabamaamvsmiddletennesseelive.us/
http://www.smuvsnorthtexaslive.us/
http://www.sanjosestatevstulsalive.us/
http://www.southernmississippivskentuckylive.us/
http://www.northerniowavsiowastatelive.us/
http://www.fresnostatevsnebraskalive.us/
http://www.easternwashingtonvswashingtonstatelive.us/
http://www.newmexicostatevsuteplive.us/
http://www.newhampshirevssandiegostatelive.us/
http://www.arizonavsbyulive.us/
http://www.northernillinoisvswyominglive.us/
http://www.uclavstexasamlive.us/
http://www.lsuvswisconsinlive.us/
http://www.miamiohvsiowalive.us/
http://www.southeasternlouisianavsoklahomastatelive.us/
http://www.ucdavisvsoregonlive.us/
http://www.georgiavsnorthcarolinalive.us/
http://www.massachusettsvsfloridalive.us/
http://www.uscvsalabamalive.us/
http://www.southdakotastatevstculive.us/
http://www.clemsonvsauburnlive.us/
http://www.notredamevstexaslive.us/
date:05-09-16
http://www.charlottevslouisvillelive.us/
http://www.appalachianstatevstennesseelive.us/
http://www.presbyteriancollegevscentralmichiganlive.us/
http://www.mainevsconnecticutlive.us/
http://www.williammaryvsncstatelive.us/
http://www.southcarolinavsvanderbiltlive.us/
http://www.southernutahvsutahlive.us/
http://www.ricevswesternvskentuckylive.us/
http://www.oregonstatevsminnesotalive.us/
http://www.southdakotavsnewmexico.us/
http://www.montanastatevsidaholive.us/
http://www.furmanvsmichiganstatelive.us/
http://www.northwesternstatevsbaylorlive.us/
http://www.kansasstatevsstanfordlive.us/
http://www.ballstatevsgeorgiastatelive.us/
http://www.albanyvsbuffalolive.us/
http://www.colgatevssyracuselive.us/
http://www.armyvstemplelive.us/
http://www.coloradostatevscoloradolive.us/
http://www.toledovsarkansasstatelive.us/
http://www.oklahomavshoustonlive.us/
http://www.bowlinggreenvsohiostatelive.us/
http://www.hawaiivsmichiganlive.us/
http://www.rutgersvswashingtonlive.us/
http://www.georgiatechvsbostoncollegelive.us/
http://www.fordhamvsnavylive.us/
http://www.westernmichiganvsnorthwesternlive.us/
http://www.boisestatevslouisianalafayettelive.us/
http://www.missourivswestvirginialive.us/
http://www.howardvsmarylandlive.us/
http://www.libertyvsvirginiatechlive.us/
http://www.villanovavspittsburghlive.us/
http://www.abilenechristianvsairforcelive.us/
http://www.richmondvsvirginialive.us/
http://www.kentstatevspennstatelive.us/
http://www.southernillinoisvsfloridaatlanticlive.us/
http://www.hamptonvsolddominionlive.us/
http://www.floridaamvsmiamilive.us/
http://www.savannahstatevsgeorgiasouthernlive.us/
http://www.austinpeayvstroylive.us/
http://www.alabamaamvsmiddletennesseelive.us/
http://www.smuvsnorthtexaslive.us/
http://www.sanjosestatevstulsalive.us/
http://www.southernmississippivskentuckylive.us/
http://www.northerniowavsiowastatelive.us/
http://www.fresnostatevsnebraskalive.us/
http://www.easternwashingtonvswashingtonstatelive.us/
http://www.newmexicostatevsuteplive.us/
http://www.newhampshirevssandiegostatelive.us/
http://www.arizonavsbyulive.us/
http://www.northernillinoisvswyominglive.us/
http://www.uclavstexasamlive.us/
http://www.lsuvswisconsinlive.us/
http://www.miamiohvsiowalive.us/
http://www.southeasternlouisianavsoklahomastatelive.us/
http://www.ucdavisvsoregonlive.us/
http://www.georgiavsnorthcarolinalive.us/
http://www.massachusettsvsfloridalive.us/
http://www.uscvsalabamalive.us/
http://www.southdakotastatevstculive.us/
http://www.clemsonvsauburnlive.us/
http://www.notredamevstexaslive.us/
date:05-09-16
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community