mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
change: report unhandled tracebacks to a repository
As repeats of these traceback notifications were annoying some of the devops staff, and it took coordination to share tracebacks with developers, this commit removes that responsibility off of devops by reporting tracebacks to Gitlab repositories in the form of issues. - removed ServerErrorNotification - removed notifications.postmaster configuration option - added notifications.gitlab-instance option - added notifications.error-project option - added notifications.error-token option - added aurweb.exceptions.handle_form_exceptions, a POST route decorator Issues are filed confidentially. This change will need updates in infrastructure's ansible configuration before this can be applied to aur.archlinux.org. Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
e2eb3a7ded
commit
7485cc231e
14 changed files with 254 additions and 85 deletions
|
@ -11,6 +11,7 @@ from fastapi import APIRouter, Form, Query, Request, Response
|
|||
from fastapi.responses import JSONResponse
|
||||
|
||||
from aurweb import defaults
|
||||
from aurweb.exceptions import handle_form_exceptions
|
||||
from aurweb.ratelimit import check_ratelimit
|
||||
from aurweb.rpc import RPC, documentation
|
||||
|
||||
|
@ -150,6 +151,7 @@ async def rpc(request: Request,
|
|||
@router.get("/rpc.php") # Temporary! Remove on 03/04
|
||||
@router.post("/rpc/")
|
||||
@router.post("/rpc")
|
||||
@handle_form_exceptions
|
||||
async def rpc_post(request: Request,
|
||||
v: Optional[int] = Form(default=None),
|
||||
type: Optional[str] = Form(default=None),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue