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

    https://github.com/apache/brooklyn-server/pull/645#discussion_r113654520
  
    --- Diff: 
core/src/main/java/org/apache/brooklyn/core/mgmt/persist/BrooklynMementoPersisterToObjectStore.java
 ---
    @@ -658,6 +701,33 @@ private Stopwatch deltaImpl(Delta delta, 
PersistenceExceptionHandler exceptionHa
             }
         }
     
    +    private void addPersistContentIfManagedBundle(final BrooklynObjectType 
type, final String id, List<ListenableFuture<?>> futures, final 
PersistenceExceptionHandler exceptionHandler) {
    +        if (type==BrooklynObjectType.MANAGED_BUNDLE) {
    +            if (mgmt==null) {
    +                throw new IllegalStateException("Cannot persist bundles 
without a mangaement context");
    +            }
    +            final ManagedBundle mb = 
((ManagementContextInternal)mgmt).getOsgiManager().get().getManagedBundles().get(id);
    +            if (mb==null) {
    +                LOG.warn("Cannot find managed bundle for added bundle 
"+id+"; ignoring");
    +                return;
    +            }
    +            
    +            if (mb instanceof BasicManagedBundle) {
    +                final File f = 
((BasicManagedBundle)mb).getTempLocalFileWhenJustUploaded();
    --- End diff --
    
    should there be some synchronization here on 
`get/setTempLocalFileWhenJustUploaded()` (the methods themselves aren't 
`synchronized`).


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