We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62e3191 commit 50cd99aCopy full SHA for 50cd99a
Sources/DistributedActors/Cluster/Reception/OperationLogDistributedReceptionist.swift
@@ -629,8 +629,9 @@ extension OpLogDistributedReceptionist {
629
try await peerReceptionistRef.ackOps(until: latestAppliedSeqNrFromPeer, by: self)
630
} catch {
631
switch error {
632
- case RemoteCallError.clusterAlreadyShutDown:
633
- // ignore silently; this often happens during tests when we terminate systems while interacting with them
+ case RemoteCallError.clusterAlreadyShutDown, is TimeoutError:
+ // ignore silently; clusterAlreadyShutDown often happens during tests when we terminate systems
634
+ // while interacting with them. TimeoutErrors are also expected to happen sometimes.
635
()
636
default:
637
log.error("Error: \(error)")
0 commit comments