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 88f0688 commit a226c71Copy full SHA for a226c71
src/commands/WorkerCommand.php
@@ -101,6 +101,7 @@ public function execute()
101
102
// Display configuration
103
$io->bold('Starting APM metrics worker with configuration:', true);
104
+ $batchSize = $options['batch_size'] > 0 ? $options['batch_size'] : ($options['batchSize'] ?? 'All available');
105
$io->table([
106
[
107
'Setting' => 'Source Type',
@@ -112,7 +113,7 @@ public function execute()
112
113
],
114
115
'Setting' => 'Batch Size',
- 'Value' => $options['batch_size'] > 0 ? $options['batch_size'] : ($options['batchSize'] ?? 'All available')
116
+ 'Value' => $batchSize
117
118
119
'Setting' => 'Timeout',
0 commit comments