Commit 932a22f 1 parent 4349a03 commit 932a22f Copy full SHA for 932a22f
File tree 4 files changed +5
-2
lines changed
docs/src/main/paradox/release-notes
http2-tests/src/test/scala/org/apache/pekko/http/impl/engine/http2
4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ All the changes in the @ref:[1.0.x releases](releases-1.0.md) up to and includin
12
12
### Changes
13
13
* Changed names of HTTP status codes 413 and 422 ([ PR87] ( https://github.com/apache/pekko-http/pull/87 ) )
14
14
* Parse entire HTTP chunk size ([ PR528] ( https://github.com/apache/pekko-http/pull/528 ) )
15
+ * Increased default value of ` pekko.http.server.stream-cancellation-delay ` and ` pekko.http.client.stream-cancellation-delay ` from 100 to 1000 millis ([ PR590] ( https://github.com/apache/pekko-http/pull/590 ) )
15
16
16
17
### Additions
17
18
* Add UnsupportedContentTypeException Java DSL ([ PR376] ( https://github.com/apache/pekko-http/pull/376 ) )
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ pekko.http {
222
222
# In most cases, there should be no reason to change this setting.
223
223
#
224
224
# Set to 0 to disable the delay.
225
- stream-cancellation-delay = 100 millis
225
+ stream-cancellation-delay = 1000 millis
226
226
227
227
http2 {
228
228
# The maximum number of request per connection concurrently dispatched to the request handler.
@@ -532,7 +532,7 @@ pekko.http {
532
532
# In most cases, there should be no reason to change this setting.
533
533
#
534
534
# Set to 0 to disable the delay.
535
- stream-cancellation-delay = 100 millis
535
+ stream-cancellation-delay = 1000 millis
536
536
}
537
537
#client-settings
538
538
Original file line number Diff line number Diff line change 6
6
default-dispatcher.throughput = 1
7
7
}
8
8
stream.materializer.debug.fuzzing-mode = off
9
+ stream.testkit.all-stages-stopped-timeout = 20 s
9
10
}
Original file line number Diff line number Diff line change @@ -306,6 +306,7 @@ class H2SpecIntegrationSpec extends PekkoFreeSpec(
306
306
executable,
307
307
" -k" , " -t" ,
308
308
" -p" , port.toString,
309
+ " -o" , " 9" ,
309
310
" -j" , junitOutput.getPath) ++
310
311
specSectionNumber.toList.map(number => s " http2/ $number" )
311
312
You can’t perform that action at this time.
0 commit comments