Nick Zelei

Results 16 comments of Nick Zelei

FYI it looks like they've added API support for building project references. https://github.com/microsoft/TypeScript/pull/31432 ``` interface SolutionBuilder { build(project?: string, cancellationToken?: CancellationToken): ExitStatus; clean(project?: string): ExitStatus; buildReferences(project: string, cancellationToken?: CancellationToken): ExitStatus;...

I just came across this Keycloak issue and it seems related: [KEYCLOAK-19116](https://issues.redhat.com/browse/KEYCLOAK-19116)

Preface: I no longer work at the company where I was utilizing this technology. But the setup was such that we had two clients that we would authenticate clients through....

I also have a need for this. My implementation of keycloak heavily uses Role -> Client Scope mappings for mapping roles that come from our IdP into scopes. I also...

I took a peek at the code. I believe this is because the `attachment.content` is a stream. It is an instance of the `StreamHash` class, which is a `Transform` stream...

> I've been looking into this with @g-sartori and we found the problem. > > ALB ensures that only HTTPS listeners can foward requests to a gRPC target group, but...

Hm, I tried a variety of combinations with that override and still to no avail. The main difference is that the URL I'm requesting is tied to a wildcard certificate....

Not sure if this is helpful, but here is a debug trace: ``` D 2022-07-23T21:14:03.625Z | index | Loading @grpc/grpc-js version 1.6.7 D 2022-07-23T21:14:03.634Z | resolving_load_balancer | dns:my-service.my-namespace.stage.my-domain.com:443 IDLE ->...

Thank you @jamesharv - this fixed my issue. Was starting at my code for a long while trying to figure out why my test wouldn't resolve. I've used ts-mockito for...

Would like to see this as well. I'm looking to use otel in Go and it's quite confusing what is actually required, especially when looking at the compliance matrix: https://github.com/open-telemetry/opentelemetry-specification/blob/main/spec-compliance-matrix.md#environment-variables...