You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by cs...@apache.org on 2023/06/30 12:06:11 UTC

[accumulo] branch main updated (2d12563ce1 -> 81d404e6d4)

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

cshannon pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


    from 2d12563ce1 Merge branch '2.1'
     add 5174be131a Use URI when creating Path in TabletFile (#3549)
     new 81d404e6d4 Merge branch '2.1'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../main/java/org/apache/accumulo/core/metadata/StoredTabletFile.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


[accumulo] 01/01: Merge branch '2.1'

Posted by cs...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 81d404e6d4bd377c70c98ff9e2377d21c10e2b7e
Merge: 2d12563ce1 5174be131a
Author: Christopher L. Shannon (cshannon) <ch...@gmail.com>
AuthorDate: Fri Jun 30 08:03:58 2023 -0400

    Merge branch '2.1'

 .../main/java/org/apache/accumulo/core/metadata/StoredTabletFile.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --cc core/src/main/java/org/apache/accumulo/core/metadata/StoredTabletFile.java
index b20724869f,24da3132ba..614368ebcb
--- a/core/src/main/java/org/apache/accumulo/core/metadata/StoredTabletFile.java
+++ b/core/src/main/java/org/apache/accumulo/core/metadata/StoredTabletFile.java
@@@ -18,9 -18,8 +18,10 @@@
   */
  package org.apache.accumulo.core.metadata;
  
+ import java.net.URI;
 +import java.util.Objects;
  
 +import org.apache.accumulo.core.data.TableId;
  import org.apache.hadoop.fs.Path;
  import org.apache.hadoop.io.Text;
  
@@@ -44,9 -42,8 +45,9 @@@ public class StoredTabletFile extends A
     * the entry can be deleted.
     */
    public StoredTabletFile(String metadataEntry) {
-     super(new Path(metadataEntry));
+     super(new Path(URI.create(metadataEntry)));
      this.metadataEntry = metadataEntry;
 +    this.referencedTabletFile = ReferencedTabletFile.of(getPath());
    }
  
    /**