Browse Source
🤖 Auto commit for release 'develop' on 2025-06-26
pull/846/head
JC5
4 months ago
No known key found for this signature in database
GPG Key ID: 910CF2B5E8B6CC6E
2 changed files with
3 additions and
1 deletions
-
app/Jobs/ProcessImportSubmissionJob.php
-
app/Services/SimpleFIN/AuthenticationValidator.php
|
|
@ -21,7 +21,8 @@ class ProcessImportSubmissionJob implements ShouldQueue |
|
|
|
{ |
|
|
|
use Dispatchable; |
|
|
|
use InteractsWithQueue; |
|
|
|
use Queueable, SerializesModels; |
|
|
|
use Queueable; |
|
|
|
use SerializesModels; |
|
|
|
|
|
|
|
/** |
|
|
|
* The number of times the job may be attempted. |
|
|
|
|
|
@ -45,6 +45,7 @@ class AuthenticationValidator implements AuthenticationValidatorInterface |
|
|
|
if ('' === $key) { |
|
|
|
|
|
|
|
Log::warning(sprintf('app.key is empty ("%s"), cannot authenticate. Return OK anyway.', $key)); |
|
|
|
|
|
|
|
return AuthenticationStatus::AUTHENTICATED; |
|
|
|
} |
|
|
|
Log::debug('app.key is OK, can authenticate.'); |
|
|
|