Spencer Judge
Spencer Judge
Same for unpack. A common pattern would be to try to unpack as a series of different types, but taking `self` by ownership prevents this and forces you to explicitly...
Sorry for the late replay - had some other urgent things and was on vacation for a while. So I think the feature flag forgetting problem can probably be handled...
> @Sushisource what do you think about just letting `cargo test` run all tests, add adding a command to run unit tests only? Yeah, we can do that (though it's...
@andrepastore Sorry this fell off my rader. @happylinks Are you using the Rust SDK as well? Tonic was upgraded relatively recently here https://github.com/temporalio/sdk-core/pull/782 and I also made a change that...
Yeah, I think that would probably do it in terms of having default certs. I think it's got to be something system related, since we do have tests that are...
Ah, ok but that's against local server - I assume it was configured to use TLS? How is that server configured and running?
Oh, yeah I read the env var getter and assumed the default was what you were hitting. I'll try this out at some point today and see what I get.
So I added a simple tls test to Core's CI that connects to cloud, which looks essentially identical to your repro setup and it works fine: https://github.com/temporalio/sdk-core/pull/800 I couldn't get...
Well, the `OpenTelemetry metrics error occurred. Metrics exporter otlp failed with the grpc server returns error (The service is currently unavailable): , detailed error message: tcp connect error: Connection refused...
BTW I've managed to work around this by doing this: ``` shadowJar { doLast { ant.jar(update: "true", destfile: shadowJar.archivePath.path) { fileset(file: project(':agent').shadowJar.archivePath) } } } ``` But it is quite...