File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ go.sum @ajm188 @deepthi @harshit-gangal @mattlord @rohit-nayak-ps @systay @froui
72
72
/go /vt /vttablet /tabletmanager /rpc_throttler.go @ shlomi-noach @ mattlord @ timvaillancourt
73
73
/go /vt /vttablet /tabletserver /throttle @ shlomi-noach @ mattlord @ timvaillancourt
74
74
/go /vt /vttablet /tabletmanager /vreplication @ rohit-nayak-ps @ mattlord
75
+ /go /vt /vttablet /tabletmanager /vdiff @ rohit-nayak-ps @ mattlord
75
76
/go /vt /vttablet /tabletmanager /vstreamer @ rohit-nayak-ps @ mattlord
76
77
/go /vt /vttablet /tabletserver * @ harshit-gangal @ systay @ shlomi-noach @ rohit-nayak-ps @ timvaillancourt
77
78
/go /vt /vttablet /tabletserver /messager @ mattlord @ rohit-nayak-ps @ derekperkins
Original file line number Diff line number Diff line change @@ -966,7 +966,8 @@ func TestCancelMigration_TABLES(t *testing.T) {
966
966
err = topo .CheckKeyspaceLocked (ctx , ts .sourceKeyspace )
967
967
require .NoError (t , err )
968
968
969
- ts .cancelMigration (ctx , sm )
969
+ err = ts .cancelMigration (ctx , sm )
970
+ require .NoError (t , err )
970
971
971
972
// Expect the queries to be cleared
972
973
assert .Empty (t , env .tmc .vrQueries [100 ])
@@ -1027,7 +1028,8 @@ func TestCancelMigration_SHARDS(t *testing.T) {
1027
1028
err = topo .CheckKeyspaceLocked (ctx , ts .sourceKeyspace )
1028
1029
require .NoError (t , err )
1029
1030
1030
- ts .cancelMigration (ctx , sm )
1031
+ err = ts .cancelMigration (ctx , sm )
1032
+ require .NoError (t , err )
1031
1033
1032
1034
// Expect the queries to be cleared
1033
1035
assert .Empty (t , env .tmc .vrQueries [100 ])
You can’t perform that action at this time.
0 commit comments