in vault-connection/src/jetbrains/buildServer/buildTriggers/vcs/vault/impl/VaultConnectionImpl.java [251:261]
public void logout() {
try {
if (ServerOperations.isConnected()) {
ServerOperations.Logout();
}
} catch (Throwable th) {
LOG.error("Exception occurred when disconnecting from Vault server", th);
} finally {
resetCaches();
}
}