Configuring Solace w/ testcontainers

Yeah happens every time, even with a 30s sleep after starting the container.
[Context_4_ReactorThread] INFO com.solacesystems.jcsmp.impl.flow.BindRequestTask - Client-4: Got BIND (‘Q/MyQueue’) Error Response (503) - Unknown Queue
I get this error like 3 times until my test for some reason still turn green.
I mean its ok, since in the end it still works somehow, but it would be nice to reduce logging during tests.
Maybe the following lines are more helpful?
[Context_7_ReactorThread] INFO com.solacesystems.jcsmp.protocol.impl.TcpClientChannel - Client-7: (Client name:   Local port: 65162  Remote addr: localhost Remote port: 65125) - handleException(): Channel Closed Event (smfclient 7) [Context_7_ReactorThread] INFO com.solacesystems.jcsmp.protocol.impl.TcpClientChannel - Client-7: handleException(): Channel Closed Event (smfclient 7) with exception: null cur_stack=Thread: “Context_7_ReactorThread” daemon id=176, prio=5:   com.solacesystems.jcsmp.protocol.impl.TcpClientChannel.handleException(TcpClientChannel.java:1374)   com.solacesystems.jcsmp.protocol.impl.TcpClientChannel.handleException(TcpClientChannel.java:1325)   com.solacesystems.jcsmp.protocol.nio.impl.SubscriberMessageReader.handleClosedSocketDuringRead(SubscriberMessageReader.java:203)   com.solacesystems.jcsmp.protocol.smf.SimpleSmfClient.handleClosedSocketDuringRead(SimpleSmfClient.java:1184)   com.solacesystems.jcsmp.protocol.nio.impl.SyncEventDispatcherReactor.processReactorChannels(SyncEventDispatcherReactor.java:229)   com.solacesystems.jcsmp.protocol.nio.impl.SyncEventDispatcherReactor.eventLoop(SyncEventDispatcherReactor.java:157)   com.solacesystems.jcsmp.protocol.nio.impl.SyncEventDispatcherReactor$SEDReactorThread.run(SyncEventDispatcherReactor.java:338)   java.base/java.lang.Thread.run(Thread.java:833) >
(This is logged twice for the same client and no other client)
I’m also autowiring the JMSTemplate for my message handler with the default ConnectionFactory. I’m trying to find out if this is the culprit.
Some more info about my setup:
Running IntelliJ 2022.1 on Win 10, testcontainer on (1.17.1), my solace depencies are
com.solace.spring.boot:solace-jms-spring-boot-autoconfigure

com.solace.spring.boot:solace-jms-spring-boot-starter
org.springframework.integration:spring-integration-jms
all on their latest release.
I have a postgres db and some other containers running which are required for testing (they’re not running via testcontainers atm)