What does HRESULT 0x80630103 (PEER_E_CONNECTION_NOT_FOUND) mean?

 
Previous Next
PEER_E_TOO_MANY_ATTRIBUTES PEER_E_CONNECT_SELF

PEER_E_CONNECTION_NOT_FOUND

Where the peer stack rejects the operation

PEER_E_CONNECTION_NOT_FOUND — HRESULT 0x80630103 marks the requested direct or neighbor connection identifier is no longer present in the graph or group connection table. Treat it as a graph lifecycle result rather than a generic peer-networking failure.

Peer Graphing maintains a connected set of nodes, replicates records and exposes separate graph, node, connection and event lifetimes. A graph database being open is not the same as the node being connected.

Evidence to preserve before retrying

  • Record the first failing surface among PeerGraphEnumConnections, PeerGraphCloseDirectConnection, PeerGroupEnumConnections and PeerGroupCloseDirectConnection.
  • Preserve connection ID, node ID, connection type, enumeration snapshot, disconnect event order and whether another thread already closed the link.
  • Place successful creation or discovery, state-changing events and the failing call on one timeline.
  • Keep peer names, identities, record identifiers, invitation data and endpoints in their original Unicode or binary representation.

Controlled isolation

Enumerate active connections immediately before closing or sending, then repeat after processing a disconnect event. Change one variable only; simultaneous changes to identity, cloud, database and firewall state destroy attribution.

CheckpointQuestion for this HRESULT
Before the APIWas the required node or connection state obtained in this process and user context?
At the HRESULTPreserve connection ID, node ID, connection type, enumeration snapshot, disconnect event order and whether another thread already closed the link.
After correctiontreat connection IDs as ephemeral and remove them from application state as soon as the corresponding connection event arrives.

Neighboring result

PEER_E_NODE_NOT_FOUND differs because node-not-found refers to graph node identity; connection-not-found refers to a specific live link object. Keep both HRESULT values in chronological order because a corrected prerequisite can expose the next validation stage.

Safe response

Treat connection IDs as ephemeral and remove them from application state as soon as the corresponding connection event arrives. Preserve durable graph databases, group exports, identity certificates and invitation artifacts before changing them.

References


Looking for a different code? Search another status or error code.