mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2024-12-12 10:04:14 +02:00
v0.92: Command-line Repository Path Fix
* Fixed an issue where the master process was passing --repo-remote-path instead of --repo-path to the remote and causing the lock files to be created in the default repository directory (/var/lib/backup), generally ending in failure. This was only an issue when --repo-remote-path was defined on the command line rather than in pg_backrest.conf. Reported by Jan Wieck.
This commit is contained in:
parent
1ce9961f8a
commit
5307c858a7
@ -1,7 +1,7 @@
|
||||
# pgBackRest<br/>Change Log
|
||||
|
||||
## v0.95dev: UNDER DEVELOPMENT
|
||||
__No Release Date Set__
|
||||
## v0.92: Command-line Repository Path Fix
|
||||
__Released April 6, 2016__
|
||||
|
||||
* Fixed an issue where the master process was passing `--repo-remote-path` instead of `--repo-path` to the remote and causing the lock files to be created in the default repository directory (`/var/lib/backup`), generally ending in failure. This was only an issue when `--repo-remote-path` was defined on the command line rather than in `pg_backrest.conf`. _Reported by Jan Wieck_.
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
</intro>
|
||||
|
||||
<changelog>
|
||||
<changelog-release date="XXXX-XX-XX" version="0.95dev" title="UNDER DEVELOPMENT">
|
||||
<changelog-release date="2016-04-06" version="0.92" title="Command-line Repository Path Fix">
|
||||
<release-feature-bullet-list>
|
||||
<release-feature><text>Fixed an issue where the master process was passing <setting>--repo-remote-path</setting> instead of <setting>--repo-path</setting> to the remote and causing the lock files to be created in the default repository directory (<path>/var/lib/backup</path>), generally ending in failure. This was only an issue when <setting>--repo-remote-path</setting> was defined on the command line rather than in <file>pg_backrest.conf</file>. <i>Reported by Jan Wieck</i>.</text></release-feature>
|
||||
</release-feature-bullet-list>
|
||||
|
@ -17,7 +17,7 @@ use Exporter qw(import);
|
||||
# repositories or manifests can be read - that's the job of the format number.
|
||||
#-----------------------------------------------------------------------------------------------------------------------------------
|
||||
our # 'our' keyword is on a separate line to make the ExtUtils::MakeMaker parser happy.
|
||||
$VERSION = '0.95dev';
|
||||
$VERSION = '0.92';
|
||||
|
||||
push @EXPORT, qw($VERSION);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user