File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 2323 [permissions-client.core :as pc]))
2424
2525(def de-job-type " DE" )
26+ (def agave-job-type " Agave" )
2627(def tapis-job-type " Tapis" )
2728(def interactive-job-type " Interactive" )
2829(def osg-job-type " OSG" )
Original file line number Diff line number Diff line change 2323 jp/combined-client-name)
2424
2525 (getJobTypes [_]
26- (mapcat #(.getJobTypes %) clients))
26+ (conj ( mapcat #(.getJobTypes %) clients) jp/agave-job-type ))
2727
2828 (listSystemIds [_]
2929 (mapcat #(.listSystemIds %) clients))
368368 (.hasAppPermission (util/get-apps-client clients system-id) username system-id app-id required-level))
369369
370370 (supportsJobSharing [_ job-step]
371- (.supportsJobSharing (util/apps-client-for-job-step clients job-step) job-step)))
371+ (and (not= (:job_type job-step) jp/agave-job-type)
372+ (.supportsJobSharing (util/apps-client-for-job-step clients job-step) job-step))))
You can’t perform that action at this time.
0 commit comments