Closed jacodg closed 7 months ago
I'm unsure how to reproduce this, I've added the provided config, but for me, it all works as it should. I've also tested with an IteratingPipe to send many requests, they all succeed. See #6467
Please try this again once all ladybug fixes have been merged.
With 8.1.0-20240324.154823 I still see the same problem. I now also tested it under Linux which gives the same result. With a clean clone of the Frank!Runner running Frank2Example1 with only the following changes:
frank-runner$ git diff
diff --git a/examples/Frank2Example1/configurations/Example1a/Configuration.xml b/examples/Frank2Example1/configurations/Example1a/Configuration.xml
index 43f2cfb..70ff35f 100644
--- a/examples/Frank2Example1/configurations/Example1a/Configuration.xml
+++ b/examples/Frank2Example1/configurations/Example1a/Configuration.xml
@@ -7,7 +7,22 @@
<ApiListener name="Listener1a" uriPattern="service1a"/>
</Receiver>
<Pipeline>
- <FixedResultPipe name="HelloWorld" returnString="Hello World!"/>
- </Pipeline>
+ <!--FixedResultPipe name="HelloWorld" returnString="Hello World!"/-->
+<SenderPipe name="Test 1">
+ <HttpSender url="http://localhost:8080/"/>
+</SenderPipe>
+<SenderPipe name="Test 2">
+ <HttpSender url="http://localhost:8080/"/>
+</SenderPipe>
+<SenderPipe name="Test 3">
+ <HttpSender url="http://localhost:8080/"/>
+</SenderPipe>
+<SenderPipe name="Test 4">
+ <HttpSender url="http://localhost:8080/"/>
+</SenderPipe>
+<SenderPipe name="Test 5">
+ <HttpSender url="http://localhost:8080/"/>
+</SenderPipe>
+ </Pipeline>
</Adapter>
</Configuration>
\ No newline at end of file
diff --git a/examples/Frank2Example1/configurations/Example1a/StageSpecifics_LOC.properties b/examples/Frank2Example1/configurations/Example1a/StageSpecifics_LOC.properties
index 2d406e5..04f59c9 100644
--- a/examples/Frank2Example1/configurations/Example1a/StageSpecifics_LOC.properties
+++ b/examples/Frank2Example1/configurations/Example1a/StageSpecifics_LOC.properties
@@ -1 +1,2 @@
-stub4testtool.configuration=true
\ No newline at end of file
+#stub4testtool.configuration=true
+stub4testtool.configuration=false
\ No newline at end of file
Ah, that's because the response is never read, and thus it does not display it.
Describe the issue
When using:
The first four senders show:
And the last one shows:
When using:
The first four senders show:
And the last one shows:
Environment