Skip to content

Commit d8ad8ec

Browse files
authored
Enable 'read-timeout' SSE contract test (#30)
This capability was already implemented, but the test wasn't enabled.
1 parent 80ee88f commit d8ad8ec

File tree

1 file changed

+1
-3
lines changed
  • contract-tests/src/bin/sse-test-api

1 file changed

+1
-3
lines changed

contract-tests/src/bin/sse-test-api/main.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,9 @@ struct Event {
8181
async fn status() -> impl Responder {
8282
web::Json(Status {
8383
capabilities: vec![
84-
// "comments".to_string(),
85-
// "post".to_string(),
86-
// "report".to_string(),
8784
"headers".to_string(),
8885
"last-event-id".to_string(),
86+
"read-timeout".to_string(),
8987
],
9088
})
9189
}

0 commit comments

Comments
 (0)