Skip to content
This repository has been archived by the owner on Nov 1, 2018. It is now read-only.

Commit

Permalink
#4 fixes for metadata create
Browse files Browse the repository at this point in the history
  • Loading branch information
mconway committed Aug 22, 2014
1 parent e01e00e commit cc00a01
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,11 @@ private void processUnionOperation(Message message, Messages ofMessages) {

log.info("part:{}", part);

if (part.getUri() != null) {
absolutePath = part.getUri().toString();
log.info("established uri as:{}", absolutePath);
}

/*
* Look for AVU create event
*/
Expand All @@ -121,10 +126,6 @@ private void processUnionOperation(Message message, Messages ofMessages) {
log.info("no additional properties");
continue;
}
if (part.getUri() != null) {
absolutePath = part.getUri().toString();
log.info("established uri as:{}", absolutePath);
}

log.info("inspecting additional properties for avu create");

Expand Down

0 comments on commit cc00a01

Please sign in to comment.