feat(chalice): fixed sentry proxy endpoint
This commit is contained in:
parent
8a8f1b734d
commit
b7685b0239
1 changed files with 1 additions and 1 deletions
|
|
@ -222,7 +222,7 @@ def delete_sentry(projectId: int, context: schemas.CurrentContext = Depends(OR_c
|
|||
|
||||
|
||||
@app.get('/{projectId}/integrations/sentry/events/{eventId}', tags=["integrations"])
|
||||
def proxy_sentry(projectId: int, eventId: int, context: schemas.CurrentContext = Depends(OR_context)):
|
||||
def proxy_sentry(projectId: int, eventId: str, context: schemas.CurrentContext = Depends(OR_context)):
|
||||
return {"data": log_tool_sentry.proxy_get(tenant_id=context.tenant_id, project_id=projectId, event_id=eventId)}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue