mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-01-06 03:53:59 +02:00
Fixed an invalid log call in lock routines.
This commit is contained in:
parent
a3b8808f94
commit
af5965a6ef
@ -131,6 +131,10 @@
|
|||||||
<release-item>
|
<release-item>
|
||||||
<p>Fixed an issue where the contents of <path>pg_xlog</path> were being copied if the directory was symlinked.</p>
|
<p>Fixed an issue where the contents of <path>pg_xlog</path> were being copied if the directory was symlinked.</p>
|
||||||
</release-item>
|
</release-item>
|
||||||
|
|
||||||
|
<release-item>
|
||||||
|
<p>Fixed an invalid log call in lock routines.</p>
|
||||||
|
</release-item>
|
||||||
</release-bug-list>
|
</release-bug-list>
|
||||||
|
|
||||||
<release-feature-list>
|
<release-feature-list>
|
||||||
|
@ -97,7 +97,7 @@ sub lockAcquire
|
|||||||
# Cannot proceed if a lock is currently held
|
# Cannot proceed if a lock is currently held
|
||||||
if (defined($strCurrentLockType))
|
if (defined($strCurrentLockType))
|
||||||
{
|
{
|
||||||
confess &lock(ASSERT, "${strCurrentLockType} lock is already held");
|
confess &log(ASSERT, "${strCurrentLockType} lock is already held");
|
||||||
}
|
}
|
||||||
|
|
||||||
# Check if processes are currently stopped
|
# Check if processes are currently stopped
|
||||||
|
Loading…
Reference in New Issue
Block a user