Sharing of authentication in pipeline tasks #495
Closed
imranakram
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
We use MSAL library for authentication. It has internal per user token cache, so authentication happens only once (per service) and cached token reused usually for an hour. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have a lot of tasks in a pipeline that work on the same environment. The thing that becomes immediately evident is that it tries to authenticate in every task individually which makes me wonder if it would be possible to authenticate once and use across the whole pipeline as long as it's the same connection selected. I'm using the service principle option. That could potentially boost performance in such pipelines.
Beta Was this translation helpful? Give feedback.
All reactions