Merge pull request #2066 from atn34/remove-object-serializer-help-text

Remove --object-serializer help text
This commit is contained in:
Vishesh Yadav 2019-09-10 01:12:21 -07:00 committed by GitHub
commit bb92b5a46a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 24 deletions

View File

@ -831,10 +831,6 @@ static void printAgentUsage(bool devhelp) {
printf(" --trace_format FORMAT\n" printf(" --trace_format FORMAT\n"
" Select the format of the trace files. xml (the default) and json are supported.\n" " Select the format of the trace files. xml (the default) and json are supported.\n"
" Has no effect unless --log is specified.\n"); " Has no effect unless --log is specified.\n");
printf(" -S ON|OFF, --object-serializer ON|OFF\n"
" Use object serializer for sending messages. The object serializer\n"
" is currently a beta feature and it allows fdb processes to talk to\n"
" each other even if they don't have the same version\n");
printf(" -m SIZE, --memory SIZE\n" printf(" -m SIZE, --memory SIZE\n"
" Memory limit. The default value is 8GiB. When specified\n" " Memory limit. The default value is 8GiB. When specified\n"
" without a unit, MiB is assumed.\n"); " without a unit, MiB is assumed.\n");
@ -920,10 +916,6 @@ static void printBackupUsage(bool devhelp) {
printf(" --trace_format FORMAT\n" printf(" --trace_format FORMAT\n"
" Select the format of the trace files. xml (the default) and json are supported.\n" " Select the format of the trace files. xml (the default) and json are supported.\n"
" Has no effect unless --log is specified.\n"); " Has no effect unless --log is specified.\n");
printf(" -S ON|OFF, --object-serializer ON|OFF\n"
" Use object serializer for sending messages. The object serializer\n"
" is currently a beta feature and it allows fdb processes to talk to\n"
" each other even if they don't have the same version\n");
#ifndef TLS_DISABLED #ifndef TLS_DISABLED
printf(TLS_HELP); printf(TLS_HELP);
#endif #endif
@ -981,10 +973,6 @@ static void printRestoreUsage(bool devhelp ) {
printf(" --trace_format FORMAT\n" printf(" --trace_format FORMAT\n"
" Select the format of the trace files. xml (the default) and json are supported.\n" " Select the format of the trace files. xml (the default) and json are supported.\n"
" Has no effect unless --log is specified.\n"); " Has no effect unless --log is specified.\n");
printf(" -S ON|OFF, --object-serializer ON|OFF\n"
" Use object serializer for sending messages. The object serializer\n"
" is currently a beta feature and it allows fdb processes to talk to\n"
" each other even if they don't have the same version\n");
#ifndef TLS_DISABLED #ifndef TLS_DISABLED
printf(TLS_HELP); printf(TLS_HELP);
#endif #endif
@ -1029,10 +1017,6 @@ static void printDBAgentUsage(bool devhelp) {
printf(" --trace_format FORMAT\n" printf(" --trace_format FORMAT\n"
" Select the format of the trace files. xml (the default) and json are supported.\n" " Select the format of the trace files. xml (the default) and json are supported.\n"
" Has no effect unless --log is specified.\n"); " Has no effect unless --log is specified.\n");
printf(" -S ON|OFF, --object-serializer ON|OFF\n"
" Use object serializer for sending messages. The object serializer\n"
" is currently a beta feature and it allows fdb processes to talk to\n"
" each other even if they don't have the same version\n");
printf(" -m SIZE, --memory SIZE\n" printf(" -m SIZE, --memory SIZE\n"
" Memory limit. The default value is 8GiB. When specified\n" " Memory limit. The default value is 8GiB. When specified\n"
" without a unit, MiB is assumed.\n"); " without a unit, MiB is assumed.\n");
@ -1079,10 +1063,6 @@ static void printDBBackupUsage(bool devhelp) {
printf(" --trace_format FORMAT\n" printf(" --trace_format FORMAT\n"
" Select the format of the trace files. xml (the default) and json are supported.\n" " Select the format of the trace files. xml (the default) and json are supported.\n"
" Has no effect unless --log is specified.\n"); " Has no effect unless --log is specified.\n");
printf(" -S ON|OFF, --object-serializer ON|OFF\n"
" Use object serializer for sending messages. The object serializer\n"
" is currently a beta feature and it allows fdb processes to talk to\n"
" each other even if they don't have the same version\n");
printf(" -v, --version Print version information and exit.\n"); printf(" -v, --version Print version information and exit.\n");
printf(" -h, --help Display this help and exit.\n"); printf(" -h, --help Display this help and exit.\n");
printf("\n" printf("\n"

View File

@ -417,10 +417,6 @@ static void printProgramUsage(const char* name) {
" --trace_format FORMAT\n" " --trace_format FORMAT\n"
" Select the format of the log files. xml (the default) and json\n" " Select the format of the log files. xml (the default) and json\n"
" are supported. Has no effect unless --log is specified.\n" " are supported. Has no effect unless --log is specified.\n"
" -S ON|OFF, --object-serializer ON|OFF\n"
" Use object serializer for sending messages. The object serializer\n"
" is currently a beta feature and it allows fdb processes to talk to\n"
" each other even if they don't have the same version\n"
" --exec CMDS Immediately executes the semicolon separated CLI commands\n" " --exec CMDS Immediately executes the semicolon separated CLI commands\n"
" and then exits.\n" " and then exits.\n"
" --no-status Disables the initial status check done when starting\n" " --no-status Disables the initial status check done when starting\n"