@highway1/core 0.1.38 → 0.1.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1117,7 +1117,8 @@ function createDHTOperations(libp2p) {
1117
1117
  searchEngine.indexAgentCard(card);
1118
1118
  logger4.info("Published Agent Card to DHT", { did: card.did });
1119
1119
  } catch (error) {
1120
- throw new DiscoveryError("Failed to publish Agent Card", error);
1120
+ logger4.warn("Failed to publish Agent Card to DHT (non-fatal)", { error: error.message });
1121
+ searchEngine.indexAgentCard(card);
1121
1122
  }
1122
1123
  },
1123
1124
  queryAgentCard: async (did) => {