mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-26 22:09:54 +00:00
Fix errant str()-of-bytes bug.
This commit is contained in:
parent
b9a1cc3dde
commit
056f7748c5
@ -289,7 +289,7 @@ class StorageFarmBroker(service.MultiService):
|
||||
gm_verifier = create_grid_manager_verifier(
|
||||
self.storage_client_config.grid_manager_keys,
|
||||
server["ann"].get("grid-manager-certificates", []),
|
||||
"pub-{}".format(server_id), # server_id is v0-<key> not pub-v0-key .. for reasons?
|
||||
"pub-{}".format(str(server_id, "ascii")), # server_id is v0-<key> not pub-v0-key .. for reasons?
|
||||
)
|
||||
|
||||
s = NativeStorageServer(
|
||||
|
Loading…
x
Reference in New Issue
Block a user