Skip to content

Commit

Permalink
Remove ingest lockfile checking
Browse files Browse the repository at this point in the history
This caused a lot of problems, where a transient issue would then cause the entire system to stop working.
  • Loading branch information
mxbi authored Nov 9, 2022
1 parent c016798 commit fc52ab0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ingest/bobguiIngest.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ function __construct ($settings = array ()) // $config is an array coming from a

# End if the lock file is present
if (file_exists ($this->settings['lockFile'])) {
$this->errors[] = 'The lock file exists so the ingest process cannot run.';
$this->errors[] = 'The lock file exists - WARNING but running anyway (leftover from previous run?).';
$this->reportErrors ();
return false;
#return false;
}

# Ensure the log file exists and is writable
Expand Down

0 comments on commit fc52ab0

Please sign in to comment.