Github user keith-turner commented on a diff in the pull request:

    https://github.com/apache/accumulo/pull/68#discussion_r52682644
  
    --- Diff: 
server/master/src/main/java/org/apache/accumulo/master/Master.java ---
    @@ -1336,7 +1332,11 @@ public void assignedTablet(KeyExtent extent) {
       }
     
       @Override
    -  public Collection<KeyExtent> migrations() {
    -    return migrations.keySet();
    +  public Set<KeyExtent> migrations() {
    +    Set<KeyExtent> migrationsCopy = new HashSet<KeyExtent>();
    +    synchronized (migrations) {
    +      migrationsCopy.addAll(migrations.keySet());
    +    }
    +    return migrationsCopy;
    --- End diff --
    
    >  I was thinking a bigger risk would be that a user would accidentally 
introduce a RuntimeException 
    
    My hope was that the runtime exception would possibly expose a bug (in 
addition to causing a bug).  However, there are certainly cases where it would 
only cause problems and not expose any bugs.
    
    > wrapped immutability is not something which we can check at compile-time
    
    That would be nice to have.


---
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