Skip to content

Commit

Permalink
Use right port on set_testing-240-t.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
renecannao committed Nov 21, 2023
1 parent fa3a65d commit 7eeaf0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tap/tests/set_testing-240-t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ void * my_conn_thread(void *arg) {
if (mysql==NULL) {
exit(EXIT_FAILURE);
}
int port = local ? 0 : ( cl.mysql_port + rand()%multiport );
int port = local ? 0 : ( cl.port + rand()%multiport );
MYSQL *rc=mysql_real_connect(mysql, cl.mysql_host, cl.mysql_username, cl.mysql_password, schema, port, NULL, 0);
if (rc==NULL) {
if (silent==0) {
Expand Down

0 comments on commit 7eeaf0b

Please sign in to comment.