8000 Fixed the user guide link in mongo shell by tplavcic · Pull Request #1234 · Tokutek/mongo · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fixed the user guide link in mongo shell #1234

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 1 commit into from
Sep 9, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions debian/tokumx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This configuration file contains most of the useful options and their
# defaults for TokuMX. For the full set of all available options, see
# the Users' Guide available at
# http://www.tokutek.com/products/downloads/tokumx-ce-downloads/
# https://www.percona.com/doc/percona-tokumx/

########################################################################
# PROCESS OPTIONS
Expand Down Expand Up @@ -178,4 +178,4 @@ pluginsDir = /usr/lib/tokumx/plugins
# non-background index builds) compresses intermediate files before
# writing to disk. These are the intermediate files that are written
# in tmpDir (see above).
#loaderCompressTmp = true
#loaderCompressTmp = true
4 changes: 2 additions & 2 deletions rpm/tokumx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This configuration file contains most of the useful options and their
# defaults for TokuMX. For the full set of all available options, see
# the Users' Guide available at
# http://www.tokutek.com/products/downloads/tokumx-ce-downloads/
# https://www.percona.com/doc/percona-tokumx/

########################################################################
# PROCESS OPTIONS
Expand Down Expand Up @@ -178,4 +178,4 @@ pluginsDir = @LIBDIR@/tokumx/plugins
# non-background index builds) compresses intermediate files before
# writing to disk. These are the intermediate files that are written
# in tmpDir (see above).
#loaderCompressTmp = true
#loaderCompressTmp = true
2 changes: 1 addition & 1 deletion src/mongo/shell/dbshell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ int _main( int argc, char* argv[], char **envp ) {
cout << "Welcome to the TokuMX shell.\n"
"For interactive help, type \"help\".\n"
"For more comprehensive documentation, see\n\thttp://docs.mongodb.org/\n"
"and the TokuMX Users' Guide available at\n\thttp://www.tokutek.com/products/downloads/tokumx-ce-downloads/\n"
"and the TokuMX Users' Guide available at\n\thttps://www.percona.com/doc/percona-tokumx/\n"
"Questions? Try the support group\n\thttp://groups.google.com/group/tokumx-user" << endl;
fstream f;
f.open(rcLocation.c_str(), ios_base::out );
Expand Down
0