mirror of https://gitee.com/bigwinds/arangodb
fix uninitialized variable
This commit is contained in:
parent
ad0a3f38b0
commit
08b8ca0833
|
@ -35,7 +35,8 @@ using namespace arangodb::options;
|
||||||
ActionFeature* ActionFeature::ACTION = nullptr;
|
ActionFeature* ActionFeature::ACTION = nullptr;
|
||||||
|
|
||||||
ActionFeature::ActionFeature(application_features::ApplicationServer* server)
|
ActionFeature::ActionFeature(application_features::ApplicationServer* server)
|
||||||
: ApplicationFeature(server, "Action") {
|
: ApplicationFeature(server, "Action"),
|
||||||
|
_allowUseDatabase(false) {
|
||||||
setOptional(true);
|
setOptional(true);
|
||||||
requiresElevatedPrivileges(false);
|
requiresElevatedPrivileges(false);
|
||||||
startsAfter("Logger");
|
startsAfter("Logger");
|
||||||
|
|
Loading…
Reference in New Issue