Skip to content

Commit

Permalink
Merge branch 'master' into feature/pipe-258-use-append-vs-merge-optio…
Browse files Browse the repository at this point in the history
…n-from-backend-config-ui
  • Loading branch information
fracasula authored Oct 25, 2023
2 parents f942511 + 03a4c26 commit e738f57
Show file tree
Hide file tree
Showing 46 changed files with 578 additions and 257 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.15.4](https://github.com/rudderlabs/rudder-server/compare/v1.15.3...v1.15.4) (2023-10-23)


### Bug Fixes

* invalid memory address or nil pointer dereference in googlecloudfunction ([#4003](https://github.com/rudderlabs/rudder-server/issues/4003)) ([ccb6068](https://github.com/rudderlabs/rudder-server/commit/ccb606876b4b487bf6eb33a489e6aee6aba5fb89))

## [1.15.3](https://github.com/rudderlabs/rudder-server/compare/v1.15.2...v1.15.3) (2023-10-19)


Expand Down
1 change: 1 addition & 0 deletions app/apphandlers/embeddedAppHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ func (a *embeddedApp) StartRudderCore(ctx context.Context, options *app.Options)
a.log.Infof("Configured deployment type: %q", deploymentType)

reporting := a.app.Features().Reporting.Setup(ctx, backendconfig.DefaultBackendConfig)
defer reporting.Stop()
syncer := reporting.DatabaseSyncer(types.SyncerConfig{ConnInfo: misc.GetConnectionString(config)})
g.Go(func() error {
syncer()
Expand Down
1 change: 1 addition & 0 deletions app/apphandlers/processorAppHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ func (a *processorApp) StartRudderCore(ctx context.Context, options *app.Options
a.log.Infof("Configured deployment type: %q", deploymentType)

reporting := a.app.Features().Reporting.Setup(ctx, backendconfig.DefaultBackendConfig)
defer reporting.Stop()
syncer := reporting.DatabaseSyncer(types.SyncerConfig{ConnInfo: misc.GetConnectionString(config.Default)})
g.Go(misc.WithBugsnag(func() error {
syncer()
Expand Down
15 changes: 9 additions & 6 deletions cmd/devtool/commands/event.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,22 @@ func EVENT() *cli.Command {
Action: EventSend,
Flags: []cli.Flag{
&cli.StringFlag{
Name: "endpoint",
Usage: "HTTP endpoint for rudder-server",
Value: "http://localhost:8080",
Name: "endpoint",
Usage: "HTTP endpoint for rudder-server",
Value: "http://localhost:8080",
Aliases: []string{"e"},
},
&cli.StringFlag{
Name: "write-key",
Usage: "source write key",
Required: true,
Aliases: []string{"w"},
},
&cli.IntFlag{
Name: "count",
Usage: "number of events to send",
Value: 1,
Name: "count",
Usage: "number of events to send",
Value: 1,
Aliases: []string{"c"},
},
},
ArgsUsage: "",
Expand Down
2 changes: 1 addition & 1 deletion cmd/rudder-cli/db/queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/lensesio/tableprinter"
_ "github.com/lib/pq"
"github.com/urfave/cli"
"github.com/urfave/cli/v2"

"github.com/rudderlabs/rudder-server/cmd/rudder-cli/client"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/rudder-cli/gateway/gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"

"github.com/lensesio/tableprinter"
"github.com/urfave/cli"
"github.com/urfave/cli/v2"

"github.com/rudderlabs/rudder-server/cmd/rudder-cli/client"
)
Expand Down
Loading

0 comments on commit e738f57

Please sign in to comment.