Skip to content

Commit

Permalink
Merge branch 'bugfix/prevent-race-condition-when-saving-shipment-trac…
Browse files Browse the repository at this point in the history
…king' into release
  • Loading branch information
michielgerritsen committed Jan 30, 2025
2 parents 06b702a + 4426ce7 commit 08b7c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Service/LockService.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function lock(string $name, int $timeout = -1, ?string $reason = null): b
return true;
}

$message = 'Locking: ' . $name . ($reason ? ' - Reaseon: ' . $reason : '');
$message = 'Locking: ' . $name . ($reason ? ' - Reason: ' . $reason : '');
$this->config->addToLog('info', $message);
if ($this->isLockManagerAvailable()) {
return $this->alreadyLocked = $this->lockManager->lock($name, $timeout);
Expand Down

0 comments on commit 08b7c33

Please sign in to comment.