10000 Bug fix/fix non maintainer mode by dothebart · Pull Request #21764 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Bug fix/fix non maintainer mode #21764

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

Merged
merged 7 commits into from
May 14, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
we need to disable the ProcessEnvironmentFeature here too.
  • Loading branch information
dothebart committed May 14, 2025
commit d23060b20111a728bedd42aea86682c422cdeaa9
5 changes: 4 additions & 1 deletion client-tools/Utils/ArangoClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ using ArangoClientFeaturesList = TypeList<
VersionFeature, // VersionFeature must go first
HttpEndpointProvider, ConfigFeature, FileSystemFeature, LoggerFeature,
OptionsCheckFeature, RandomFeature, ShellColorsFeature, ShutdownFeature,
ProcessEnvironmentFeature, SslFeature, T...>;
#ifdef ARANGODB_ENABLE_MAINTAINER_MODE
ProcessEnvironmentFeature,
#endif
SslFeature, T...>;

} // namespace arangodb
0