mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
added TSAN option report_atomic_races=0
This commit is contained in:
parent
c1ca0f35e7
commit
c7fcc611b2
@ -51,7 +51,12 @@ instance = cluster.add_instance(
|
||||
"configs/server.key",
|
||||
],
|
||||
user_configs=["configs/users.xml"],
|
||||
env_variables={"UBSAN_OPTIONS": "print_stacktrace=1"},
|
||||
env_variables={
|
||||
"UBSAN_OPTIONS": "print_stacktrace=1",
|
||||
# Bug in TSAN reproduces in this test https://github.com/grpc/grpc/issues/29550#issuecomment-1188085387
|
||||
"TSAN_OPTIONS": "report_atomic_races=0 "
|
||||
+ os.getenv("TSAN_OPTIONS", default=""),
|
||||
},
|
||||
)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user