-
Notifications
You must be signed in to change notification settings - Fork 188
Conversation
/run-all-tests tidb=release-3.0 |
1 similar comment
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
2 similar comments
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
1 similar comment
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
1 similar comment
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
4 similar comments
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
@@ -89,7 +90,6 @@ func InitLogger(cfg *Config) error { | |||
Level: cfg.Level, | |||
File: pclog.FileLogConfig{ | |||
Filename: cfg.File, | |||
LogRotate: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LogRotate
removed in current pingcap/log.
@GregoryIan @WangXiangUSTC PTAL |
/run-all-tests tidb=release-3.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rest LGTM
/run-all-tests tidb=release-3.0 |
LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rest LGTM
tests/http_apis/run.sh
Outdated
@@ -31,6 +31,7 @@ function run() { | |||
task_data=`cat $WORK_DIR/task.yaml.bak` | |||
rm $WORK_DIR/task.yaml.bak | |||
echo $task_data | |||
sleep 2 # wait for embed HTTP service avaible |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we add a simple backoff function to wait it ok?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added backoff in aa3d4e7.
syncer/db_test.go
Outdated
@@ -275,7 +275,10 @@ func (s *testDBSuite) TestTimezone(c *C) { | |||
continue | |||
} | |||
|
|||
rowid := ev.Rows[0][0].(int32) | |||
rowid, ok := ev.Rows[0][0].(int32) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any concurrent case to run? or does not resetBinlogSyncer
help to filter other cases?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I revert this change (in aa3d4e7) and will split the unit test cases (with MySQL) into different containers in CI later.
/run-all-tests tidb=release-3.0 |
/run-all-tests tidb=release-3.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
What problem does this PR solve?
combine etcd log into dm-master
What is changed and how it works?
Check List
Tests
Code changes
Side effects