Andre Piwoni
Andre Piwoni
I think provided solution is more of a brute force approach to refresh service account token every minute. Could we attempt to test for recommended `expires_in` before preemptively refreshing token...
@mikebell90 Does any of this really applies in cases where client provides access token without using KUBECONFIG but rather by getting it via custom API? I know duration of my...
"The KCL should only move on if it has successfully executed the processRecords method" This is a streaming library that should not stop just because implementor of processRecords may not...
John, I think you are getting confused here about the concept of guaranteed delivery. Records are being guaranteed to be delivered to the processor at-least-once. Yes or no? What are...
But would you really want to stop processing stream when you have non-recoverable error like formatting in one of your records? I wouldn't unless there are some ordering dependencies in...
So you are talking about uncaught exceptions where acknowledgement is manual and not auto?
Just look at this code snippet: ``` r = requests.get("https://slackpirate-donotuse.slack.com", cookies=cookie) already_signed_in_match = set(re.findall(ALREADY_SIGNED_IN_TEAM_REGEX, str(r.content))) if already_signed_in_match: for workspace in already_signed_in_match: r = requests.get("https://" + workspace + "/customize/emoji", cookies=cookie) regex_tokens...
FYI- SSO seems to work in v3.4.4 in single namespace but not managed namespace mode. This makes me skeptical about http proxy fix. I have not checked cluster install. The...
> I think this might be fixed by [#10046](https://github.com/argoproj/argo-workflows/pull/10046) @simox-83 Were you able to verify that this fix resolved your issue? What is install mode you have: namespace, cluster or...
OK. Here's the issue, I think, which has nothing to do with proxy. In v3.3.5 I have been able to configure SSO RBAC by defining role and binding in target...