You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FileAttributesattributes = descriptor.getAttributes();
if (attributes.isDefined(FileAttribute.QOS_POLICY) && attributes.getQosPolicy() == null) {
/* * This is a lazily discovered change, so * as a matter of consistency it calls for removal * of the pnfsid from the engine's tracking tables. */engineDao.delete(update.getPnfsId());
returnsuper.fetchRequirements(update, descriptor);
}
returnfetchRequirements(update, descriptor);
}
@OverridepublicFileQoSRequirementsfetchRequirements(FileQoSUpdateupdate, FileQoSRequirementsdescriptor)
throwsQoSException {
FileAttributesattributes = descriptor.getAttributes();
Stringname = attributes.getQosPolicy();
When policy is not defined, then fetchRequirements is called, which invokes attributes.getQosPolicy() TheString name = attributes.getQosPolicy();` called when
The text was updated successfully, but these errors were encountered:
Found in log files of prod system.
Casuse:
When policy is not defined, then
fetchRequirements
is called, which invokesattributes.getQosPolicy()
The
String name = attributes.getQosPolicy();` called whenThe text was updated successfully, but these errors were encountered: