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
critwall requests both https,anon and https,cert URLs during transfer negotiation, but needs to be careful to make the call using the resulting security method (specifically, make downloads anonymously).
so, instead of the Subject.doAs(...) in run() that provides a client cert to all https requests, it should
do a Subject.doAs in getDownloadURLs (transfer negotation) and return a List
conditonally do Subject.doAs in syncArtifact, depending on the securityMethod
This will remove extraneous/unecessary authentication and overhead that goes with it.
The text was updated successfully, but these errors were encountered:
critwall requests both https,anon and https,cert URLs during transfer negotiation, but needs to be careful to make the call using the resulting security method (specifically, make downloads anonymously).
so, instead of the Subject.doAs(...) in run() that provides a client cert to all https requests, it should
This will remove extraneous/unecessary authentication and overhead that goes with it.
The text was updated successfully, but these errors were encountered: