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
{{ message }}
This repository has been archived by the owner on Sep 15, 2023. It is now read-only.
The code uses the reactive WebClient but ends up calling #block() which, as the name suggests, blocks and therefore defeats the whole purpose of using WebClient in the first place. Examples:
The code uses the reactive
WebClient
but ends up calling#block()
which, as the name suggests, blocks and therefore defeats the whole purpose of usingWebClient
in the first place. Examples:CovidCertificate-App-Transformation-Service/ch-covidcertificate-backend-transformation/ch-covidcertificate-backend-transformation-ws/src/main/java/ch/admin/bag/covidcertificate/backend/transformation/ws/client/BitClientOauthImpl.java
Line 63 in 8289bad
CovidCertificate-App-Transformation-Service/ch-covidcertificate-backend-transformation/ch-covidcertificate-backend-transformation-ws/src/main/java/ch/admin/bag/covidcertificate/backend/transformation/ws/client/BitClientOauthImpl.java
Line 79 in 8289bad
The code should instead do one of the following:
#block()
and instead call#subscribe()
WebClient
to the blockingRestTemplate
The text was updated successfully, but these errors were encountered: