From f252d5072589c9f8a60f76b9ed425619c9badab1 Mon Sep 17 00:00:00 2001 From: dongmen <414110582@qq.com> Date: Mon, 20 Dec 2021 11:53:14 +0800 Subject: [PATCH] *: fix go mod error --- cdc/metrics.go | 2 +- pkg/orchestrator/batch.go | 4 ++-- pkg/orchestrator/batch_test.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cdc/metrics.go b/cdc/metrics.go index 56d10126e8e..6f6a85408a7 100644 --- a/cdc/metrics.go +++ b/cdc/metrics.go @@ -18,7 +18,7 @@ import ( "github.com/pingcap/tiflow/cdc/kv" "github.com/pingcap/tiflow/cdc/owner" "github.com/pingcap/tiflow/cdc/processor" - tablepipeline "github.com/pingcap/ticdc/cdc/processor/pipeline" + tablepipeline "github.com/pingcap/tiflow/cdc/processor/pipeline" "github.com/pingcap/tiflow/cdc/puller" "github.com/pingcap/tiflow/cdc/sink" "github.com/pingcap/tiflow/cdc/sorter/memory" diff --git a/pkg/orchestrator/batch.go b/pkg/orchestrator/batch.go index 4d28ab35f5c..51d3b302a8d 100644 --- a/pkg/orchestrator/batch.go +++ b/pkg/orchestrator/batch.go @@ -15,8 +15,8 @@ package orchestrator import ( "github.com/pingcap/errors" - cerrors "github.com/pingcap/ticdc/pkg/errors" - "github.com/pingcap/ticdc/pkg/orchestrator/util" + cerrors "github.com/pingcap/tiflow/pkg/errors" + "github.com/pingcap/tiflow/pkg/orchestrator/util" ) const ( diff --git a/pkg/orchestrator/batch_test.go b/pkg/orchestrator/batch_test.go index 47185e607d2..40d718fa3b9 100644 --- a/pkg/orchestrator/batch_test.go +++ b/pkg/orchestrator/batch_test.go @@ -17,7 +17,7 @@ import ( "fmt" "testing" - "github.com/pingcap/ticdc/pkg/orchestrator/util" + "github.com/pingcap/tiflow/pkg/orchestrator/util" "github.com/stretchr/testify/require" )