We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59f4e3c commit 7411d91Copy full SHA for 7411d91
2 files changed
pg_probackup2/init_helpers.py
@@ -96,8 +96,9 @@ def __init__(self):
96
if shutil.which(test_env["PGPROBACKUPBIN"]):
97
self.probackup_path = test_env["PGPROBACKUPBIN"]
98
else:
99
- if self.verbose:
100
- print('PGPROBACKUPBIN is not an executable file')
+ raise Exception(
+ 'pg_probackup binary not found at PGPROBACKUPBIN={0}'.format(
101
+ test_env["PGPROBACKUPBIN"]))
102
103
if not self.probackup_path:
104
probackup_path_tmp = os.path.join(
setup.py
@@ -4,7 +4,7 @@
4
from distutils.core import setup
5
6
setup(
7
- version='0.8.0',
+ version='0.8.1',
8
name='testgres_pg_probackup2',
9
packages=['pg_probackup2', 'pg_probackup2.storage'],
10
description='Plugin for testgres that manages pg_probackup2',
0 commit comments