10000 [PBCKP-236] ANSI C fix · postgrespro/pg_probackup@5659884 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5659884

Browse files
author
Ivan Lazarev
committed
[PBCKP-236] ANSI C fix
1 parent b2091cd commit 5659884

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/utils/remote.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ void check_remote_agent_compatibility(int agent_version, char *compatibility_str
321321
elog(LOG, "Agent compatibility params:\n%s", compatibility_str);
322322

323323
{
324-
char buf[compatibility_str_max_size];
324+
char buf[1024];
325325

326326
prepare_compatibility_str(buf, sizeof buf);
327327
if(strcmp(compatibility_str, buf))

tests/compatibility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def setUp(self):
1414
self.fname = self.id().split('.')[3]
1515

1616
# @unittest.expectedFailure
17-
@unittest.skip("skip")
17+
# @unittest.skip("skip")
1818
def test_catchup_with_different_remote_major_pg(self):
1919
"""
2020
Decription in jira issue PBCKP-236

0 commit comments

Comments
 (0)
0