-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
failpoint: update failpoint (#17628) #17710
failpoint: update failpoint (#17628) #17710
Conversation
Signed-off-by: sre-bot <sre-bot@pingcap.com>
/run-all-tests |
go.mod
Outdated
@@ -31,6 +31,7 @@ require ( | |||
github.com/ngaut/pools v0.0.0-20180318154953-b7bc8c42aac7 | |||
github.com/ngaut/sync2 v0.0.0-20141008032647-7a24ed77b2ef | |||
github.com/opentracing/basictracer-go v1.0.0 | |||
<<<<<<< HEAD |
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.
@AilinKid
Please fix the conflict.
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.
addressed
Signed-off-by: AilinKid <314806019@qq.com>
@zimulala @djshow832 PTAL |
/run-all-tests |
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
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
/run-all-tests |
Sorry @zimulala, you don't have permission to trigger auto merge event on this branch. |
/merge |
Sorry @zimulala, you don't have permission to trigger auto merge event on this branch. |
/run-sqllogic-test-1 |
@bb7133 PTAL |
/merge |
Your auto merge job has been accepted, waiting for:
|
/run-all-tests |
@sre-bot merge failed. |
/run-all-tests |
/merge |
Your auto merge job has been accepted, waiting for:
|
/run-all-tests |
cherry-pick #17628 to release-3.0
Signed-off-by: AilinKid 314806019@qq.com
What problem does this PR solve?
Related failpoint PR: pingcap/failpoint#58
Problem Summary:
Fix go failpoint data race in TiDB test case.
1: when
*CustomParallelSuiteFlag = true
is set, the tests in differentSuite
will run parallelly.2: when a test arrived
Enable()
, when another arrivedEval()
will cause data race in failpoint.For more detail:
1: see https://internal.pingcap.net/idc-jenkins/blue/organizations/jenkins/tidb_ghpr_unit_test/detail/tidb_ghpr_unit_test/38125/pipeline/
2: Also fixes #17625
What is changed and how it works?
What's Changed: update go.mod
Check List
Tests
Release note