Skip to content

Commit c97a400

Browse files
author
Ole John Aske
committed
Bug #25635892 'STARTING CONNECT THREAD' SHOULD BE LOGGED AS AN 'INFO', NOT 'WARNING'
As subject says: The message 'starting connect thread' should be an 'information' instead of a 'warning' as this a completely harmless situation.
1 parent 9102fc5 commit c97a400

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

mysql-test/suite/ndb/r/ndb_bushy_joins.result

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ test.parent analyze status OK
3030
test.eq_child analyze status OK
3131
test.ref_child analyze status OK
3232
set ndb_join_pushdown = on;
33-
call mtr.add_suppression("starting connect thread");
3433
===============================
3534
Run single instance of 'query1'
3635
===============================

mysql-test/suite/ndb/t/ndb_bushy_joins.test

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,6 @@ let $query4 =
163163
connection j1;
164164
set ndb_join_pushdown = on;
165165

166-
call mtr.add_suppression("starting connect thread");
167-
168166
-- echo ===============================
169167
-- echo Run single instance of 'query1'
170168
-- echo ===============================

sql/ha_ndbcluster_connection.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
2+
Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
33
44
This program is free software; you can redistribute it and/or modify
55
it under the terms of the GNU General Public License as published by
@@ -149,7 +149,7 @@ ndbcluster_connect(int (*connect_callback)(void),
149149
g_pool[i]->connect(0,0,0);
150150
if (g_pool[i]->node_id() == 0)
151151
{
152-
sql_print_warning("NDB[%u]: starting connect thread", i);
152+
sql_print_information("NDB[%u]: starting connect thread", i);
153153
g_pool[i]->start_connect_thread();
154154
continue;
155155
}

0 commit comments

Comments
 (0)