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 4f1c45f commit 77b0c46Copy full SHA for 77b0c46
src/Jobs/ProcessModelRecordJob.php
@@ -41,7 +41,9 @@ public function handle(RecordProcessorManager $manager): void
41
$this->modelUploadFile->update([
42
'state' => UploadFileState::error,
43
'error_message' => \sprintf(
44
- 'Invalid `null` action for %s type', $this->modelUploadFile->getAttribute('model_type')
+ 'Invalid `null` action for %s type. Valid type is %s',
45
+ $this->modelUploadFile->getAttribute('model_type'),
46
+ \implode(', ', $manager->getProcessors())
47
),
48
]);
49
0 commit comments