Forum Discussion
redfish4ktc2
12 years agoSuper Contributor
Hi,
I've previously done this using groovy code in the response definition
This is uggly, but this works.
In the responsee panel, open the script tab and put the following code
Tell me if this matches your need
Note: next time, please do not put "URGENT" in your post message, this won't make user answer quickly
I've previously done this using groovy code in the response definition
This is uggly, but this works.
In the responsee panel, open the script tab and put the following code
System.out.println("Prepare a very slow response")
def timeout = 40000 // in millis
System.out.println("Ready to wait for " + timeout + " ms")
Thread.sleep(timeout)
System.out.println("End of wait")
System.out.println("End of the very slow response")Tell me if this matches your need
Note: next time, please do not put "URGENT" in your post message, this won't make user answer quickly