Skip to content

Commit 6a93b38

Browse files
committed
updated docs, bumped version to 1.2.0-beta.1
1 parent cd0672c commit 6a93b38

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "koi-net"
7-
version = "1.1.0"
7+
version = "1.2.0b1"
88
description = "Implementation of KOI-net protocol in Python"
99
authors = [
1010
{name = "Luke Miller", email = "[email protected]"}

src/koi_net/processor/default_handlers.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,12 @@ def edge_negotiation_handler(ctx: HandlerContext, kobj: KnowledgeObject):
155155

156156
@KnowledgeHandler.create(HandlerType.Network, rid_types=[KoiNetNode])
157157
def node_contact_handler(ctx: HandlerContext, kobj: KnowledgeObject):
158-
"""Makes contact with identified coordinator nodes.
158+
"""Makes contact with providers of RID types of interest.
159159
160160
When an incoming node knowledge object is identified as a provider
161-
of `orn:koi-net.node`, and not already known to the node, this
162-
handler will propose a new edge subscribing to future node events,
163-
and fetch existing nodes to catch up to the current state.
161+
of an RID type of interest, this handler will propose a new edge
162+
subscribing to future node events, and fetch existing nodes to catch
163+
up to the current state.
164164
"""
165165
# prevents nodes from attempting to form a self loop
166166
if kobj.rid == ctx.identity.rid:

0 commit comments

Comments
 (0)