mimozell

Results 9 comments of mimozell

Having a similar issue to @LeMikaelF where the app shuts down when a required environment variable is missing. The app just shuts down and the failedTasks is incremented to 1,...

Are there any plans around this? It's been a while :D

Hmm, I discovered that this is actually happening because I am referencing the Id of the vpc in another (private) module like this: ``` vpcId: vpc.vpcIdOutput, ``` if I set...

And upon further investigation it turns out that the issue is not with the VPC mentioned above, but the VPC module that the second, private, module is referencing. To visualize:...

I realized that this issue would've happened if it had been implemented in the same way in HCL as well. The first VPC module has to be created first (in...

Seeing the same issue with 11.0.10.j9, but it works fine with 11.0.10.hs.

I am experiencing the same issue. I am trying to mock the following function: ``` inline fun post(uri: String, body: T): U? = webClient .post() .uri(uri) .body(Mono.just(body), T::class.java) .retrieve() .bodyToMono(U::class.java)...

@textbook we're having an issue with the same. This is our Dockerfile: ``` FROM postfacto/postfacto:4.3.0 ENV PORT=80 EXPOSE 80 ``` but the app keeps starting on port 3000: `* Listening...

Aha, I see. Thank you! Is the answer to the initial question that the port cannot be modified then?