Skip to content

Commit

Permalink
transfermanagers: Send subject and updated file attributes to pool
Browse files Browse the repository at this point in the history
In contrast to other doors, transfermanager does not inject the subject
and updated file attributes intp the pool io file message it sends to pool.
Space manager in master requires this information and thus cannot work
with transfermanagers unless the correct information is injected.

Target: trunk
Require-book: no
Require-notes: no
Acked-by: Paul Millar <paul.millar@desy.de>
Patch: http://rb.dcache.org/r/6413/
  • Loading branch information
gbehrmann committed Jan 21, 2014
1 parent 68909a2 commit c3c4ab7
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -412,6 +412,7 @@ public void poolInfoArrived(PoolMgrSelectPoolMsg pool_info)
}
setPool(pool_info.getPoolName());
setPoolAddress(pool_info.getPoolAddress());
fileAttributes = pool_info.getFileAttributes();
manager.persist(this);
log.debug("Positive reply from pool {}", pool);
startMoverOnThePool();
Expand All @@ -429,7 +430,7 @@ public void startMoverOnThePool()
pool,
protocol_info,
fileAttributes);

poolMessage.setSubject(transferRequest.getSubject());
if (manager.getIoQueueName() != null) {
poolMessage.setIoQueueName(manager.getIoQueueName());
}
Expand Down

0 comments on commit c3c4ab7

Please sign in to comment.