Skip to content

Commit

Permalink
Temporary workaround for #42: use http/1.1
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Nioche <[email protected]>
  • Loading branch information
jnioche committed Nov 15, 2023
1 parent f30c764 commit 0bfccf5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions conf/crawler-conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ config:
http.protocol.implementation: com.digitalpebble.stormcrawler.protocol.okhttp.HttpProtocol
https.protocol.implementation: com.digitalpebble.stormcrawler.protocol.okhttp.HttpProtocol

# the http/https protocol versions to use, in order of preference
# - must use HTTP/1.1 until WARC writer can handle HTTP/2
# - okhttp does not support HTTP/1.0 requests (it supports responses however)
http.protocol.versions:
# - "h2"
- "http/1.1"
# do not fail on unknown SSL certificates
http.trust.everything: true

Expand Down

0 comments on commit 0bfccf5

Please sign in to comment.