Github user EdColeman commented on a diff in the pull request:

    https://github.com/apache/accumulo/pull/204#discussion_r98583191
  
    --- Diff: 
core/src/main/java/org/apache/accumulo/core/client/impl/Tables.java ---
    @@ -149,6 +149,28 @@ public static void clearCache(Instance instance) {
         getZooCache(instance).clear(ZooUtil.getRoot(instance) + 
Constants.ZNAMESPACES);
       }
     
    +  /**
    +   * Clears the zoo cache from instance/root/{PATH}
    +   *
    +   * @param instance
    +   *          The Accumulo Instance
    +   * @param zooPath
    +   *          A zookeeper path
    +   */
    +  public static void clearCacheByPath(Instance instance, final String 
zooPath) {
    +
    +    String thePath;
    +
    +    if (zooPath.startsWith("/")) {
    +      thePath = zooPath;
    +    } else {
    +      thePath = "/" + zooPath;
    +    }
    +
    +    getZooCache(instance).clear(ZooUtil.getRoot(instance) + thePath);
    --- End diff --
    
    I was not sure - so I was only adding the slash if it was not present.


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to