You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2024/02/15 14:55:33 UTC

(accumulo) branch elasticity updated: Bug fix from PR #4247 (#4265)

This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch elasticity
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/elasticity by this push:
     new 10d0824fac Bug fix from PR #4247 (#4265)
10d0824fac is described below

commit 10d0824fac42faefba3305d4dcf0dc676dffb54d
Author: Kevin Rathbun <43...@users.noreply.github.com>
AuthorDate: Thu Feb 15 09:55:28 2024 -0500

    Bug fix from PR #4247 (#4265)
---
 .../org/apache/accumulo/test/functional/AmpleConditionalWriterIT.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/src/main/java/org/apache/accumulo/test/functional/AmpleConditionalWriterIT.java b/test/src/main/java/org/apache/accumulo/test/functional/AmpleConditionalWriterIT.java
index 892a507530..a193357597 100644
--- a/test/src/main/java/org/apache/accumulo/test/functional/AmpleConditionalWriterIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/functional/AmpleConditionalWriterIT.java
@@ -631,7 +631,7 @@ public class AmpleConditionalWriterIT extends AccumuloClusterHarness {
    *
    * <pre>
    * {
-   *   "txid": "FATE:META:123456",
+   *   "fateId": "FATE:META:123456",
    *   "selAll": true,
    *   "files": ["/path/to/file1.rf", "/path/to/file2.rf"]
    * }
@@ -640,7 +640,7 @@ public class AmpleConditionalWriterIT extends AccumuloClusterHarness {
   public static String createSelectedFilesJson(FateId fateId, boolean selAll,
       Collection<String> paths) {
     String filesJsonArray = GSON.get().toJson(paths);
-    return ("{'txid':'" + fateId + "','selAll':" + selAll + ",'files':" + filesJsonArray + "}")
+    return ("{'fateId':'" + fateId + "','selAll':" + selAll + ",'files':" + filesJsonArray + "}")
         .replace('\'', '\"');
   }