Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement dropUser command #3866

Merged
merged 19 commits into from
Dec 20, 2023
Prev Previous commit
Next Next commit
Merge branch 'main' into feat-create-user
  • Loading branch information
henvic committed Dec 15, 2023
commit f5e1d084bdaaa7f94ea470456c55e85e9d9d2ac8
8 changes: 5 additions & 3 deletions integration/setup/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,11 @@ func setupListener(tb testtb.TB, ctx context.Context, logger *zap.Logger) string
HANAURL: *hanaURLF,

TestOpts: registry.TestOpts{
DisablePushdown: *disablePushdownF,
EnableOplog: true,
EnableNewAuth: *enableNewAuthF,
DisablePushdown: *disablePushdownF,
EnableOplog: true,
CappedCleanupPercentage: 20,
CappedCleanupInterval: 0,
EnableNewAuth: *enableNewAuthF,
},
}
h, closeBackend, err := registry.NewHandler(handler, handlerOpts)
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.