main
Bob Mottram 2024-04-12 11:50:13 +01:00
parent f0ddf91a34
commit 43a3ab1b84
2 changed files with 5 additions and 4 deletions

View File

@ -479,7 +479,8 @@ def daemon_http_get(self) -> None:
self.server.i2p_domain,
getreq_start_time,
None, self.server.debug,
self.server.enable_shared_inbox):
self.server.enable_shared_inbox,
self.server.fitness):
return
http_404(self, 111)
return

View File

@ -25,7 +25,8 @@ def show_instance_actor(self, calling_domain: str,
onion_domain: str, i2p_domain: str,
getreq_start_time,
cookie: str, debug: str,
enable_shared_inbox: bool) -> bool:
enable_shared_inbox: bool,
fitness: {}) -> bool:
"""Shows the instance actor
"""
if debug:
@ -87,8 +88,7 @@ def show_instance_actor(self, calling_domain: str,
set_headers(self, 'application/activity+json', msglen,
cookie, calling_domain, False)
write2(self, msg)
fitness_performance(getreq_start_time,
self.server.fitness,
fitness_performance(getreq_start_time, fitness,
'_GET', 'show_instance_actor',
debug)
return True