Merge pull request #664 from openreplay/api-v1.7.0_hotfix
feat(chalice): fixed sentry proxy endpoint
This commit is contained in:
commit
3e27795340
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