Browse Source

thread_registry.cc:

Disable assert causing bug # 28030 temporarily, since it's non-critical, and the bug have been filed


server-tools/instance-manager/thread_registry.cc:
  Disable assert causing bug # 28030 temporarily, since it's non-critical, and the bug have been filed
pull/374/head
unknown 19 years ago
parent
commit
604c12b466
  1. 3
      server-tools/instance-manager/thread_registry.cc

3
server-tools/instance-manager/thread_registry.cc

@ -67,7 +67,8 @@ Thread_registry::~Thread_registry()
if (head.next != &head)
log_error("Not all threads died properly\n");
/* All threads must unregister */
DBUG_ASSERT(head.next == &head);
// Disabled assert temporarily - BUG#28030
// DBUG_ASSERT(head.next == &head);
pthread_mutex_unlock(&LOCK_thread_registry);
pthread_cond_destroy(&COND_thread_registry_is_empty);

Loading…
Cancel
Save