Alejandro H

Results 10 comments of Alejandro H

One option is to delay initialization until method invocation occurs. Basically: ```cs public async Task FooAsync() { await EnsureInitializedAsync(); //do actual operation } ``` The RedisCache class is a good...

The option I brought up was about moving the constructor async logic to a class method upon invocation. I’m struggling to understand why this logic must be in the constructor....

Having something like this: ```cs public class C { public Task M() { return FooAsync(); //a Task returning method. } } ``` It's totally fine if you do not care...

Thanks for the quick reply. We are running it inside a container, here are the environment variables we are setting: SPRING_CLOUD_CONFIG_SERVER_GIT_USERNAME=some-username SPRING_CLOUD_CONFIG_SERVER_GIT_PASSWORD=some-password SPRING_CLOUD_CONFIG_SERVER_GIT_URI=https://[email protected]/some-org/some-project/_git/app-config SPRING_CLOUD_CONFIG_SERVER_GIT_FORCE-PULL=true SPRING_CLOUD_CONFIG_SERVER_GIT_BASEDIR=/opt/app-config ENCRYPT_KEY=some-key MANAGEMENT_ENDPOINTS_WEB_EXPOSURE_INCLUDE=health

>what version? 2.1.2.RELEASE >Seems odd that you have the username in the uri and env vars Indeed. I haven't noticed that. Let me check if there is a reason for...

Updated the git url to exclude the username, it did not make a difference. I'm in the process of updating the app to the latest version. I'll share the results.

We upgraded to the latest versions, but no luck: spring-boot-starter-parent from 2.1.5 to 2.3.4 spring-cloud-config-server from 2.1.2 to 2.2.5 [Here is the whole pom file.](https://github.com/epignosisx/spring-cloud-config-server-jwt/blob/master/pom.xml) It does not seem to...

Thanks for pointing me in the right direction. I'm using the **ServerTelemetryChannel**. Looks like the issue is in this [line](https://github.com/Microsoft/ApplicationInsights-dotnet/blob/develop/src/Core/Managed/Shared/Channel/Transmission.cs#L62). Ideally, I would like to be able to provide Application...

I debugged the issue a little bit and the problem is that the callback to this timeout: https://github.com/akiran/react-slick/blob/93c37bd42f5d91e0edfcb83be4e1f8a028ee8e56/src/inner-slider.js#L397 is not executing because during the wait period `resizeWindow` is being called...

@askoufis tried the solution in the repo https://github.com/graup/vanilla-extract-rollup-example and it works great except when there is a "use client" module directive. Rollup will skip those files. More details here: https://github.com/rollup/rollup/issues/4699