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

Adding the new server arguments #880

Merged
merged 2 commits into from
Apr 27, 2018
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
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,19 @@ public enum GeneralServerFlag implements ServerArgument {
* Add long stack traces to log entries. Recommended for debugging only.
* Default: false
*/
ASYNC_TRACE("--async-trace");
ASYNC_TRACE("--async-trace"),

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't see any practical sense in these double line breaks between items

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mykola-mokhnach Updated.

/**
* Disable additional security checks. Only enable it if all the clients are in the trusted network.
* Default: false
*/
RELAXED_SECURITY("--relaxed-security"),


/**
* Enables NodeJS memory dumps collection feature.
*/
ENABLE_HEAP_DUMP("--enable-heapdump");

private final String arg;

Expand Down