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
wip
  • Loading branch information
henvic committed Dec 18, 2023
commit c66ae27758b0560d2c8591038a3a227ed0a0f985
2 changes: 1 addition & 1 deletion integration/setup/listener.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
EnableOplog: true,
CappedCleanupPercentage: 20,
CappedCleanupInterval: 0,
EnableNewAuth: *enableNewAuthF,
EnableNewAuth: true,

Check warning on line 186 in integration/setup/listener.go

View check run for this annotation

Codecov / codecov/patch

integration/setup/listener.go#L186

Added line #L186 was not covered by tests
},
}
h, closeBackend, err := registry.NewHandler(handler, handlerOpts)
Expand Down
1 change: 0 additions & 1 deletion integration/setup/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ var (
logLevelF = zap.LevelFlag("log-level", zap.DebugLevel, "log level for tests")

disablePushdownF = flag.Bool("disable-pushdown", false, "disable pushdown")
enableNewAuthF = flag.Bool("enable-new-auth", false, "enable new auth")
)

// Other globals.
Expand Down
Loading