Как исправить увеличение максимальной длины метода в Akka HTTP. Я получаю следующую проблему в службе подключения к веб-сокету.
Illegal request, responding with status '400 Bad Request': Unsupported
HTTP method: HTTP method too long (started with 'メvN'). Increase
`akka.http.server.parsing.max-method-length` to support HTTP methods with more characters.
Я добавил akka.http.server.parsing.max-method-length в application.conf .
После добавления max-method-length также возникает та же проблема, и мой файл .conf:
app {
interface = "0.0.0.0"
port = 7000
}
# Cors allowed origin configuration
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cors {
allowed-origin = "http://127.0.0.1"
}
akka {
http {
server.parsing.illegal-header-warnings = off
client.parsing.illegal-header-warnings = off
}
}
akka.http.server.parsing.max-method-length =500