diff --git a/client/rpc/src/main/kotlin/net/corda/client/rpc/internal/ReconnectingCordaRPCOps.kt b/client/rpc/src/main/kotlin/net/corda/client/rpc/internal/ReconnectingCordaRPCOps.kt index 6f5715559a..cd530283a6 100644 --- a/client/rpc/src/main/kotlin/net/corda/client/rpc/internal/ReconnectingCordaRPCOps.kt +++ b/client/rpc/src/main/kotlin/net/corda/client/rpc/internal/ReconnectingCordaRPCOps.kt @@ -38,7 +38,6 @@ import net.corda.core.utilities.NetworkHostAndPort import net.corda.core.utilities.contextLogger import net.corda.core.utilities.debug import net.corda.core.utilities.seconds -import net.corda.nodeapi.exceptions.MissingAttachmentException import net.corda.nodeapi.exceptions.RejectedCommandException import org.apache.activemq.artemis.api.core.ActiveMQConnectionTimedOutException import org.apache.activemq.artemis.api.core.ActiveMQSecurityException @@ -354,10 +353,6 @@ class ReconnectingCordaRPCOps private constructor( is PermissionException -> { throw RPCException("User does not have permission to perform operation ${method.name}.", e) } - is MissingAttachmentException -> { - log.warn("Failed to perform operation ${method.name}.", e) - break@loop - } else -> { log.warn("Failed to perform operation ${method.name}.", e) throw e.targetException