Skip to content

Commit

Permalink
Merge pull request #487 from lachmanfrantisek/permission-problem-is-n…
Browse files Browse the repository at this point in the history
…ot-sentry-issue

Permission problem is not sentry issue

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
  • Loading branch information
softwarefactory-project-zuul[bot] committed Mar 12, 2020
2 parents 3589947 + 7b6e7c7 commit 59e4cbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packit_service/worker/handlers/github_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def run(self) -> HandlerResults:
state=CommitStatus.failure,
)
return HandlerResults(
success=False, details={"msg": PERMISSIONS_ERROR_WRITE_OR_ADMIN}
success=True, details={"msg": PERMISSIONS_ERROR_WRITE_OR_ADMIN}
)
return super().run()

Expand Down Expand Up @@ -523,7 +523,7 @@ def run(self) -> HandlerResults:
state=CommitStatus.failure,
)
return HandlerResults(
success=False, details={"msg": PERMISSIONS_ERROR_WRITE_OR_ADMIN}
success=True, details={"msg": PERMISSIONS_ERROR_WRITE_OR_ADMIN}
)
return super().run()

Expand Down

0 comments on commit 59e4cbe

Please sign in to comment.