Fix blocking call when deleting previous challenges#54
Conversation
|
I accidentally merged your PR. Then I merged the revert of it. Please feel free to create a new PR. |
Haha no I'm a human 😅 . Actually as part of our research we are going through projects containing blocking calls and submitting fix PRs, to gauge developers responses. As we had a tight schedule , some PRs have some portions of text copy pasted (as our approach remains the same), but the detected bugs, of course, are unique to projects :)
Could you kindly elaborate a bit more on this? 🤔 |
|
Great response, thanks. I reckoned something about fixing blocking calls is going on. The intention with .block here is to make sure previous challenges are deleted before the actual test code runs. (Clean up, so to say). To solve that non blocking ly we can connect it to the main test code stream by wrapping it with delay until. The issue with your approach is that I'm not sure if the runnable is using all the reactive magic. Maybe it does. |
Oh.. honestly I'm not pro at reactive programming but AFAIK, the |


Hello :)
Thank you for this handy project!
This PR fixes a blocking call and consequently a failing test case in WebFluxClient tests:
