[perf] inbox return 202 http code
This commit is contained in:
parent
4ee00bad59
commit
6cd142a0a0
1 changed files with 2 additions and 2 deletions
4
app.py
4
app.py
|
@ -43,8 +43,8 @@ def inbox():
|
||||||
"""Process inbox request"""
|
"""Process inbox request"""
|
||||||
is_verify = inbox_prechecker(request)
|
is_verify = inbox_prechecker(request)
|
||||||
if is_verify:
|
if is_verify:
|
||||||
return "STUB"
|
return "STUB", 202
|
||||||
return "STUB"
|
abort(401)
|
||||||
|
|
||||||
|
|
||||||
@app.route("/.well-known/nodeinfo")
|
@app.route("/.well-known/nodeinfo")
|
||||||
|
|
Loading…
Reference in a new issue