some debugging.
This commit is contained in:
parent
0c488745cb
commit
d364725d30
2 changed files with 7 additions and 2 deletions
|
@ -50,6 +50,10 @@ async def narinfo(req: Request) -> Response:
|
||||||
if ni is None:
|
if ni is None:
|
||||||
return Response(content="Not found", status_code=404)
|
return Response(content="Not found", status_code=404)
|
||||||
|
|
||||||
|
|
||||||
|
print(f"=== REMOTE {req.path_params['hash']} ===")
|
||||||
|
print(ni.dump())
|
||||||
|
print(f"=== REMOTE END ===")
|
||||||
return Response(content=ni.dump(), status_code=200, media_type="text/x-nix-narinfo")
|
return Response(content=ni.dump(), status_code=200, media_type="text/x-nix-narinfo")
|
||||||
|
|
||||||
@app.route("/local/{hash:str}.narinfo")
|
@app.route("/local/{hash:str}.narinfo")
|
||||||
|
@ -58,6 +62,9 @@ async def access_narinfo(req: Request) -> Response:
|
||||||
if ni is None:
|
if ni is None:
|
||||||
return Response(content="Not found", status_code=404)
|
return Response(content="Not found", status_code=404)
|
||||||
|
|
||||||
|
print(f"=== LOCAL {req.path_params['hash']} ===")
|
||||||
|
print(ni.dump())
|
||||||
|
print(f"=== LOCAL END ===")
|
||||||
return Response(content=ni.dump(), status_code=200, media_type="text/x-nix-narinfo")
|
return Response(content=ni.dump(), status_code=200, media_type="text/x-nix-narinfo")
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -25,9 +25,7 @@ class NarInfo(t.NamedTuple):
|
||||||
lines.append(f"Deriver: {self.deriver} ")
|
lines.append(f"Deriver: {self.deriver} ")
|
||||||
for sig in self.signatures:
|
for sig in self.signatures:
|
||||||
lines.append(f"Sig: {sig}")
|
lines.append(f"Sig: {sig}")
|
||||||
|
|
||||||
lines.append("\n")
|
lines.append("\n")
|
||||||
|
|
||||||
return "\n".join(lines)
|
return "\n".join(lines)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|
Loading…
Reference in a new issue