Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e06f91 commit 0284a18Copy full SHA for 0284a18
testgres/plugins/pg_probackup2/pg_probackup2/app.py
@@ -432,6 +432,9 @@ def show(
432
try:
433
if expect_error:
434
return text_json
435
+ index_of_bracket = text_json.find('[')
436
+ if index_of_bracket != -1:
437
+ text_json = text_json[index_of_bracket:]
438
data = json.loads(text_json)
439
except ValueError:
440
assert False, f"Couldn't parse {text_json} as json. " \
testgres/plugins/pg_probackup2/setup.py
@@ -4,7 +4,7 @@
4
from distutils.core import setup
5
6
setup(
7
- version='0.0.2',
+ version='0.0.3',
8
name='testgres_pg_probackup2',
9
packages=['pg_probackup2', 'pg_probackup2.storage'],
10
description='Plugin for testgres that manages pg_probackup2',
0 commit comments