Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/vite-4.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
cleptric committed Jun 23, 2023
2 parents bf51f49 + 050a0c7 commit cd1e150
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 69 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"http-interop/http-factory-guzzle": "^1.2",
"lcobucci/jwt": "^4.3",
"paragonie/csp-builder": "2.7",
"sentry/sentry": "^3.18",
"sentry/sentry": "^3.19.1",
"symfony/http-client": "^6.2.10"
},
"require-dev": {
Expand Down
115 changes: 57 additions & 58 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion potal/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/getsentry/gib-potato
go 1.19

require (
github.com/getsentry/sentry-go v0.21.0
github.com/getsentry/sentry-go v0.21.1-0.20230612162134-97a00a4a9d0b
github.com/google/go-cmp v0.5.9
github.com/julienschmidt/httprouter v1.3.0
github.com/slack-go/slack v0.12.2
Expand Down
4 changes: 2 additions & 2 deletions potal/go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/getsentry/sentry-go v0.21.0 h1:c9l5F1nPF30JIppulk4veau90PK6Smu3abgVtVQWon4=
github.com/getsentry/sentry-go v0.21.0/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY=
github.com/getsentry/sentry-go v0.21.1-0.20230612162134-97a00a4a9d0b h1:AVhL1yoan/25csLmQ4/AaqnfZpDckyIogupD2AB8ErQ=
github.com/getsentry/sentry-go v0.21.1-0.20230612162134-97a00a4a9d0b/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY=
github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA=
github.com/go-test/deep v1.0.4 h1:u2CU3YKy9I2pmu9pX0eq50wCgjfGIt539SqR7FbHiho=
github.com/go-test/deep v1.0.4/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA=
Expand Down
15 changes: 8 additions & 7 deletions potal/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ var slackClient *slack.Client

func main() {
sentryErr := sentry.Init(sentry.ClientOptions{
Dsn: os.Getenv("SENTRY_POTAL_DSN"),
Release: os.Getenv("RELEASE"),
Environment: os.Getenv("ENVIRONMENT"),
AttachStacktrace: true,
SendDefaultPII: true,
EnableTracing: true,
TracesSampleRate: 1.0,
Dsn: os.Getenv("SENTRY_POTAL_DSN"),
Release: os.Getenv("RELEASE"),
Environment: os.Getenv("ENVIRONMENT"),
AttachStacktrace: true,
SendDefaultPII: true,
EnableTracing: true,
TracesSampleRate: 1.0,
ProfilesSampleRate: 1.0,
})
if sentryErr != nil {
log.Fatalf("An Error Occured: %v", sentryErr)
Expand Down

0 comments on commit cd1e150

Please sign in to comment.