Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unit_test: fix concurrency test cause etcd race #4830

Merged
merged 6 commits into from
Mar 10, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rename task instead
  • Loading branch information
GMHDBJD committed Mar 10, 2022
commit cfd5447a400040ad331762683c9a3e303ba65341
4 changes: 2 additions & 2 deletions dm/dm/master/shardddl/optimist_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ func (t *testOptimist) TestBuildLockJoinedAndTable(c *C) {
var (
logger = log.L()
o = NewOptimist(&logger, getDownstreamMeta)
task = "task"
task = "task-build-lock-joined-and-table"
source1 = "mysql-replica-1"
source2 = "mysql-replica-2"
downSchema = "db"
Expand Down Expand Up @@ -1141,7 +1141,7 @@ func (t *testOptimist) TestBuildLockWithInitSchema(c *C) {
var (
logger = log.L()
o = NewOptimist(&logger, getDownstreamMeta)
task = "task"
task = "task-lock-with-init-schema"
source1 = "mysql-replica-1"
source2 = "mysql-replica-2"
downSchema = "db"
Expand Down