From 92c7d4dc1d98851d089494a351c2016d2043991c Mon Sep 17 00:00:00 2001 From: Automated go/ktf Flagger Date: Sat, 4 Nov 2023 04:05:44 +0000 Subject: [PATCH] The test target "finagle/finagle-thriftmux/src/test/scala:scala" is failing too often in master in CI. Summary: Problem: The test target "finagle/finagle-thriftmux/src/test/scala:scala" is failing too often in master in CI. Logs available here: Known to fail ticket: [CSL-12415](https://jira.twitter.biz/browse/CSL-12415) Solution: It has been marked "known-to-fail" in the BUILD file Result: This will cause it to be skipped in future builds, and its failures ignored in submit queue. This implies that code changes that further break this test will not be prevented from being submitted to the master branch, until the problem is fixed and the test is no longer marked known-to-fail. Reviewers: O865 source:/finagle/finagle-thriftmux/! Differential Revision: https://phabricator.twitter.biz/D1108489 TBR=true --- finagle-thriftmux/src/test/scala/BUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/finagle-thriftmux/src/test/scala/BUILD b/finagle-thriftmux/src/test/scala/BUILD index b84edf6d87..8cc182127d 100644 --- a/finagle-thriftmux/src/test/scala/BUILD +++ b/finagle-thriftmux/src/test/scala/BUILD @@ -2,7 +2,10 @@ junit_tests( sources = ["**/*.scala"], compiler_option_sets = ["fatal_warnings"], platform = "java8", - tags = ["bazel-compatible"], + tags = [ + "bazel-compatible", + "known-to-fail-jira:CSL-12415", + ], dependencies = [ "3rdparty/jvm/junit", "3rdparty/jvm/org/apache/thrift:libthrift",