We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a6bc73 commit 7dc1549Copy full SHA for 7dc1549
ci/jobs/functional_tests.py
@@ -297,12 +297,14 @@ def start():
297
# )
298
res = res and CH.start()
299
res = res and CH.wait_ready()
300
- if res:
301
- if "asan" not in info.job_name:
302
- print("Attaching gdb")
303
- res = res and CH.attach_gdb()
304
- else:
305
- print("Skipping gdb attachment for asan build")
+ # NOTE (strtgbb): Disable gdb, it fails to attach, disable for now
+ # if res:
+ # if "asan" not in info.job_name:
+ # print("Attaching gdb")
+ # res = res and CH.attach_gdb()
+ # else:
306
+ # print("Skipping gdb attachment for asan build")
307
+ # NOTE (strtgbb): Disable log tables, we don't use them
308
# if res:
309
# if not Info().is_local_run:
310
# if not CH.start_log_exports(stop_watch.start_time):
0 commit comments