File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
main/java/org/asynchttpclient Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 4040 * client.prepareGet("http://...").execute(ah);
4141 * </pre></blockquote>
4242 * It is recommended to create a new instance instead.
43+ *
44+ * Do NOT perform any blocking operation in there, typically trying to send another request and call get() on its future.
45+ * There's a chance you might end up in a dead lock.
46+ * If you really to perform blocking operation, executed it in a different dedicated thread pool.
4347 *
4448 * @param <T> Type of object returned by the {@link java.util.concurrent.Future#get}
4549 */
Original file line number Diff line number Diff line change 77
88 <logger name =" org.eclipse" level =" INFO" />
99
10- <root level =" DEBUg= " >
10+ <root level =" DEBUG " >
1111 <appender-ref ref =" CONSOLE" />
1212 </root >
1313</configuration >
You can’t perform that action at this time.
0 commit comments