Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 701 Bytes

0.9.4.markdown

File metadata and controls

24 lines (15 loc) · 701 Bytes

Fixes

  • Numeric characters being escaped by / path builder, found and fixed by softprops
  • Open connections were closed by default after 60 seconds, interfering with the streaming API consumption. The default is eliminated.

Enhancements

  • New configure method makes it easier to build on Dispatch's default AsyncHttpClient configuration.
val http =
  Http.configure { config: AsyncHttpClientConfig.Builder =>
    config.setRequestTimeoutInMs(60000) // keep old default?
  }