Skip to content

Commit 59ba446

Browse files
committed
Don't fail sc if we can't replicate to everyone
Signed-off-by: mdouglas47 <[email protected]>
1 parent 5418f84 commit 59ba446

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

schemachange/sc_logic.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1447,8 +1447,7 @@ int open_temp_db_resume(struct ireq *iq, struct dbtable *db, char *prefix, int r
14471447

14481448
if (tmp_tran != tran) {
14491449
rc = trans_commit(iq, tmp_tran, gbl_myhostname);
1450-
if (rc)
1451-
return -1;
1450+
if (rc && !replication_only_error_code(rc)) return -1;
14521451
}
14531452
}
14541453

0 commit comments

Comments
 (0)