Commit ab550295 authored by heikki@donna.mysql.fi's avatar heikki@donna.mysql.fi

sync0arr.c:

  Increase semaphore wait warning threshold to 240 seconds
parent f08cf9cf
...@@ -905,7 +905,7 @@ sync_array_print_long_waits(void) ...@@ -905,7 +905,7 @@ sync_array_print_long_waits(void)
cell = sync_array_get_nth_cell(sync_primary_wait_array, i); cell = sync_array_get_nth_cell(sync_primary_wait_array, i);
if (cell->wait_object != NULL if (cell->wait_object != NULL
&& difftime(time(NULL), cell->reservation_time) > 120) { && difftime(time(NULL), cell->reservation_time) > 240) {
fprintf(stderr, fprintf(stderr,
"InnoDB: Warning: a long semaphore wait:\n"); "InnoDB: Warning: a long semaphore wait:\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment