You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever user is registering holoport with holochain_agent_id that has already been registered a new entry is created in ZT Central registry.
ZT Central is using address field as a unique key, but many services downstream use name field (which is populated with holochain_agent_id) as a unique key. Because process mentioned above creates multiple entries with the same name value the structure of database from the perspective of downstream services is corrupted.
So in the name of brotherhood with downstream consumers I am suggesting deleting all the old entries where name == holochain_agent_id while creating a new entry.
This would require making 1 more call after this line of a server code.
The text was updated successfully, but these errors were encountered:
Whenever user is registering holoport with
holochain_agent_id
that has already been registered a new entry is created in ZT Central registry.ZT Central is using
address
field as a unique key, but many services downstream usename
field (which is populated withholochain_agent_id
) as a unique key. Because process mentioned above creates multiple entries with the samename
value the structure of database from the perspective of downstream services is corrupted.So in the name of brotherhood with downstream consumers I am suggesting deleting all the old entries where
name
==holochain_agent_id
while creating a new entry.This would require making 1 more call after this line of a server code.
The text was updated successfully, but these errors were encountered: