From 90caeba1dceb8fb62681b2eb435d24d04306c086 Mon Sep 17 00:00:00 2001 From: lengyuexuexuan <2428366760@qq.com> Date: Thu, 22 Feb 2024 14:25:28 +0800 Subject: [PATCH] Solve the problem of error "File is not `goimports`-ed (goimports)" in the CI process --- go-client/session/meta_call.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/go-client/session/meta_call.go b/go-client/session/meta_call.go index 8d425fce1a..6f8a03c0f0 100644 --- a/go-client/session/meta_call.go +++ b/go-client/session/meta_call.go @@ -21,12 +21,13 @@ package session import ( "context" - "github.com/apache/incubator-pegasus/go-client/idl/base" - "github.com/apache/incubator-pegasus/go-client/idl/replication" - "github.com/apache/incubator-pegasus/go-client/pegalog" "sync" "sync/atomic" "time" + + "github.com/apache/incubator-pegasus/go-client/idl/base" + "github.com/apache/incubator-pegasus/go-client/idl/replication" + "github.com/apache/incubator-pegasus/go-client/pegalog" ) type metaCallFunc func(context.Context, *metaSession) (metaResponse, error)