Skip to content

Commit

Permalink
fix: sqa config values unified across projects (#1315)
Browse files Browse the repository at this point in the history
  • Loading branch information
misamu committed Apr 17, 2023
1 parent ae4a0f4 commit 0b9baed
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion internal/driver/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"runtime/debug"
"strings"
"syscall"
"time"

grpcRecovery "github.com/grpc-ecosystem/go-grpc-middleware/recovery"
"google.golang.org/grpc/codes"
Expand Down Expand Up @@ -82,7 +83,11 @@ func (r *RegistryDefault) enableSqa(cmd *cobra.Command) {
BuildHash: config.Commit,
BuildTime: config.Date,
Config: &analytics.Config{
Endpoint: "https://sqa.ory.sh",
Endpoint: "https://sqa.ory.sh",
GzipCompressionLevel: 6,
BatchMaxSize: 500 * 1000,
BatchSize: 1000,
Interval: time.Hour * 6,
},
},
)
Expand Down

0 comments on commit 0b9baed

Please sign in to comment.