This commit is contained in:
Heyang Zhou 2025-03-20 23:39:16 +00:00 committed by GitHub
commit b4e1c9d2af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class FDBDatabase extends NativeObjectWrapper implements Database, OptionConsume
T returnVal = retryable.apply(t);
t.commit().join();
return returnVal;
} catch (RuntimeException err) {
} catch (Exception err) {
t = t.onError(err).join();
}
}