From 49feab778ac92e6698d50c3e6453d0d4e4955436 Mon Sep 17 00:00:00 2001 From: Automated go/ktf Flagger Date: Wed, 20 Nov 2024 09:31:18 +0000 Subject: [PATCH] The test target "finagle/finagle-memcached/src/test/scala:scala" is failing too often in master in CI. Summary: Problem: The test target "finagle/finagle-memcached/src/test/scala:scala" is failing too often in master in CI. Logs available here: Known to fail ticket: [CSL-12419](https://jira.twitter.biz/browse/CSL-12419) 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: O857 source:/finagle/finagle-memcached/! Subscribers: O46740 source:/finagle/finagle-memcached/ JIRA Roadmap Project: If providing a value, remove everything except the JIRA key. Leave this field unchanged to complete later in the UI. Change Classification: Select one of the following: roadmap-project, non-roadmap-project . You may also leave this field unmodified to complete later in the UI. Differential Revision: https://phabricator.twitter.biz/D1184022 TBR=true --- finagle-memcached/src/test/scala/BUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/finagle-memcached/src/test/scala/BUILD b/finagle-memcached/src/test/scala/BUILD index 54a5c216991..49e0c000edc 100644 --- a/finagle-memcached/src/test/scala/BUILD +++ b/finagle-memcached/src/test/scala/BUILD @@ -25,7 +25,10 @@ junit_tests( sources = ["**/*.scala"] + exclude_globs(EXTERNAL_SOURCES), compiler_option_sets = ["fatal_warnings"], platform = "java8", - tags = ["bazel-compatible"], + tags = [ + "bazel-compatible", + "known-to-fail-jira:CSL-12419", + ], dependencies = [ ":external", "3rdparty/jvm/com/fasterxml/jackson/core:jackson-databind",