summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-10-29 15:04:22 -0400
committerEliot Horowitz <eliot@10gen.com>2010-11-19 19:51:04 -0500
commite624de4c5121a174d66fb3d372d8a3097af6d54d (patch)
tree0149990968005ce4a4d1c6d2f6206355b7572d26
parent41bbcdab002e17a0b0a13e0b219c25cf6926fddc (diff)
downloadmongo-e624de4c5121a174d66fb3d372d8a3097af6d54d.tar.gz
increase timeout on killing
-rw-r--r--shell/shell_utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/shell_utils.cpp b/shell/shell_utils.cpp
index 5260015b926..b6a67e21c62 100644
--- a/shell/shell_utils.cpp
+++ b/shell/shell_utils.cpp
@@ -706,8 +706,8 @@ namespace mongo {
kill_wrapper( pid, signal, port );
int i = 0;
- for( ; i < 65; ++i ) {
- if ( i == 5 ) {
+ for( ; i < 130; ++i ) {
+ if ( i == 30 ) {
char now[64];
time_t_to_String(time(0), now);
now[ 20 ] = 0;