Github user NicoK commented on a diff in the pull request: https://github.com/apache/flink/pull/4146#discussion_r125244675 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/blob/BlobServerDeleteTest.java --- @@ -92,6 +99,69 @@ public void testDeleteSingle() { catch (IllegalStateException e) { // expected } + + // delete a file directly on the server + server.delete(key2); + try { + server.getURL(key2); + fail("BLOB should have been deleted"); + } + catch (IOException e) { + // expected + } + } + catch (Exception e) { + e.printStackTrace(); + fail(e.getMessage()); + } --- End diff -- Absolutely right - I was told this was an issue some versions ago with JUnit or so... was just copying the code from the other tests in this class. Let me create a cleanup-PR on top of the newest PR in this series, i.e. #4238
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---