From 0201760b75c561d56b7feed6ab5f2b83092a5c9d Mon Sep 17 00:00:00 2001 From: Rohit Nayak Date: Wed, 31 May 2023 23:14:17 +0200 Subject: [PATCH] Address review comment Signed-off-by: Rohit Nayak --- go/test/endtoend/cluster/vttablet_process.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/go/test/endtoend/cluster/vttablet_process.go b/go/test/endtoend/cluster/vttablet_process.go index d00cf54b4d5..522c205114a 100644 --- a/go/test/endtoend/cluster/vttablet_process.go +++ b/go/test/endtoend/cluster/vttablet_process.go @@ -366,7 +366,8 @@ func (vttablet *VttabletProcess) WaitForBinlogServerState(expectedStatus string) case err := <-vttablet.exit: return fmt.Errorf("process '%s' exited prematurely (err: %s)", vttablet.Name, err) case <-ctx.Done(): - return fmt.Errorf("vttablet %s, expected status not reached", vttablet.TabletPath) + return fmt.Errorf("vttablet %s, expected status of %s not reached before timeout of %v", + vttablet.TabletPath, expectedStatus, vttabletStateTimeout) case <-t.C: } }