Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into pelican-dev#249
Browse files Browse the repository at this point in the history
  • Loading branch information
Poseidon281 committed Jun 7, 2024
2 parents a6b2bac + 16fac3b commit 9c96a04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Console/Commands/Schedule/ProcessRunnableCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function handle(): int
->whereRelation('server', fn (Builder $builder) => $builder->whereNull('status'))
->where('is_active', true)
->where('is_processing', false)
->whereDate('next_run_at', '<=', Carbon::now()->toDateString())
->whereDate('next_run_at', '<=', Carbon::now()->toDateTimeString())
->get();

if ($schedules->count() < 1) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ public function form(Form $form): Form
Forms\Components\Hidden::make('io')
->helperText('The IO performance relative to other running containers')
->label('Block IO Proportion')
->default(0),
->default(500),

Forms\Components\Grid::make()
->columns(4)
Expand Down

0 comments on commit 9c96a04

Please sign in to comment.