From 83300374c7c8b776dfe25b5d3682e69dfed8866c Mon Sep 17 00:00:00 2001 From: Rene Cannao Date: Thu, 20 Nov 2025 04:36:33 +0000 Subject: [PATCH] Use right user in fast_forward_grace_close --- test/tap/tests/fast_forward_grace_close.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tap/tests/fast_forward_grace_close.cpp b/test/tap/tests/fast_forward_grace_close.cpp index 52bceaca3..27e8ee892 100644 --- a/test/tap/tests/fast_forward_grace_close.cpp +++ b/test/tap/tests/fast_forward_grace_close.cpp @@ -62,7 +62,7 @@ int main() { // 1. Generate a large binlog file MYSQL* backend_conn = mysql_init(NULL); - if (!mysql_real_connect(backend_conn, cl.host, cl.username, cl.password, "information_schema", cl.port, NULL, 0)) { + if (!mysql_real_connect(backend_conn, cl.host, cl.mysql_username, cl.mysql_password, "information_schema", cl.port, NULL, 0)) { diag("Backend connection failed: %s", mysql_error(backend_conn)); return -1; }