comment -> ticket

This commit is contained in:
meejah
2023-02-21 16:13:11 -07:00
parent 00ef4661a6
commit 6ee5c75880

View File

@ -859,11 +859,9 @@ class _Client(node.Node, pollmixin.PollMixin):
grid_manager_certificates = self.config.get_grid_manager_certificates() grid_manager_certificates = self.config.get_grid_manager_certificates()
announcement[u"grid-manager-certificates"] = grid_manager_certificates announcement[u"grid-manager-certificates"] = grid_manager_certificates
# XXX we should probably verify that the certificates are # Note: certificates are not verified for validity here, but
# valid and not expired, as that could be confusing for the # that may be useful. See:
# storage-server operator -- but then we need the public key # https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3977
# of the Grid Manager (should that go in the config too,
# then? How to handle multiple grid-managers?)
for ic in self.introducer_clients: for ic in self.introducer_clients:
ic.publish("storage", announcement, self._node_private_key) ic.publish("storage", announcement, self._node_private_key)