Skip to content

Commit 1d3f190

Browse files
committed
tricium_simple: remove HTTPS checker
Remove it. It has too many false positives. There are no more checkers running, but it's still worthwhile to leave so we can easily add them back in the future. Updates golang/go#18548. Change-Id: Ifbaf9a7d6cf685132587702b923a73a01a4ac419 Reviewed-on: https://go-review.googlesource.com/c/build/+/582956 Reviewed-by: Dmitri Shuralyov <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Russ Cox <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]>
1 parent 7d62f60 commit 1d3f190

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

recipes/recipes/tricium_simple.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ def RunSteps(api):
3232
affected_files = api.tryserver.get_files_affected_by_patch(
3333
patch_root='',
3434
report_files_via_property='affected_files')
35-
analyzers = [
36-
api.tricium.analyzers.HTTPS_CHECK,
37-
]
35+
analyzers = []
3836
api.tricium.run_legacy(analyzers, repo_path, affected_files, commit_message)
3937

4038
def GenTests(api):

0 commit comments

Comments
 (0)