Skip to content

Commit

Permalink
feat: new role for schema discovery (#920)
Browse files Browse the repository at this point in the history
  • Loading branch information
iFergal authored Jan 8, 2025
1 parent db1fc37 commit 0a6fb32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/keri/kering.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,9 @@ def sniff(ims):
Schemage = namedtuple("Schemage", 'tcp http https')
Schemes = Schemage(tcp='tcp', http='http', https='https')

Rolage = namedtuple("Rolage", 'controller witness registrar watcher judge juror peer mailbox agent')
Rolage = namedtuple("Rolage", 'controller witness registrar watcher judge juror peer mailbox agent indexer')
Roles = Rolage(controller='controller', witness='witness', registrar='registrar',
watcher='watcher', judge='judge', juror='juror', peer='peer', mailbox="mailbox", agent="agent")
watcher='watcher', judge='judge', juror='juror', peer='peer', mailbox="mailbox", agent="agent", indexer="indexer")


@dataclass(frozen=True)
Expand Down

0 comments on commit 0a6fb32

Please sign in to comment.