Skip to content

Commit 6d94780

Browse files
committed
Postfix for #7951: Make it possible to handle attach errors in key holder plugin; more error handling issues
1 parent f91e333 commit 6d94780

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/remote/client/interface.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8432,7 +8432,8 @@ static bool init(CheckStatusWrapper* status, ClntAuthBlock& cBlock, rem_port* po
84328432
{
84338433
FbLocalStatus statusAfterAttach;
84348434
cb->afterAttach(&statusAfterAttach, file_name.c_str(), nullptr);
8435-
check(&statusAfterAttach);
8435+
if (!fb_utils::containsErrorCode(statusAfterAttach->getErrors(), isc_interface_version_too_old))
8436+
check(&statusAfterAttach);
84368437
}
84378438

84388439
return true;

0 commit comments

Comments
 (0)