You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've tried to run test (in groovy) that needs to start part of spring context (@WebMvcTest) and I don't need or even want temporal stuff running.
For this code:
@TemporalTest
@ActiveProfiles(SECURITY_TEST)
@WebMvcTest(controllers = SampleController.class)
class ControllerSpec extends Specification {
active spring profiles should be: temporal_test and security-test, but only security_test is active and then I get exception:
Caused by: io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedConnectException: finishConnect(..) failed: Połączenie odrzucone: /127.0.0.1:7233
Caused by: java.net.ConnectException: finishConnect(..) failed: Połączenie odrzucone
as test tries to connect to temporal's server/client
The text was updated successfully, but these errors were encountered:
I've tried to run test (in groovy) that needs to start part of spring context (@WebMvcTest) and I don't need or even want temporal stuff running.
For this code:
active spring profiles should be:
temporal_test
andsecurity-test
, but onlysecurity_test
is active and then I get exception:as test tries to connect to temporal's server/client
The text was updated successfully, but these errors were encountered: