Browse Source

🤖 Auto commit for release 'develop' on 2025-06-26

pull/846/head
JC5 4 months ago
parent
commit
31b91c2ebe
No known key found for this signature in database GPG Key ID: 910CF2B5E8B6CC6E
  1. 3
      app/Jobs/ProcessImportSubmissionJob.php
  2. 1
      app/Services/SimpleFIN/AuthenticationValidator.php

3
app/Jobs/ProcessImportSubmissionJob.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.

1
app/Services/SimpleFIN/AuthenticationValidator.php

@ -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.');

Loading…
Cancel
Save