Sadeq Dousti
Sadeq Dousti
Addressed by https://github.com/zalando/logbook/pull/1589.
TLDR: The issue is more general than using the `ContentNegotiation` plugin. It has to do with requests that don't have a body. While running the server with a GET endpoint,...
PS: The receive pipeline can be manually triggered by something like this (here, I added `call.receiveText()` to your code): ```kotlin data class SomeData(val someProp: String) route("/test") { get { call.receiveText()...
> Would like to diagnose and fix this issue if its up for grabs @adarshjhaa100 Thanks a lot, true open source spirit! Any help is appreciated. I did a very...
@grassehh: I opened [a PR](https://github.com/zalando/logbook/pull/1819) that hopefully addresses the issue with the `logbook-ktor-server` module; please take a look. For the [issue you reported with the `logbook-ktor-client`](https://github.com/zalando/logbook/issues/1627#issuecomment-2035339329), I prefer to have...
@kasmarian Willi and I had a related discussion here: https://github.com/zalando/logbook/pull/1589#discussion_r1292238602 My two cents is that under no circumstances should a fault in Logbook result in a failure in the application.
Could be something that we look into in the future. Let's not close the issue yet.
Further inspection shows that Chrome 67.x requires `"manifest_version": 2` to be present in `manifest.json`, as explained in [https://developer.chrome.com/extensions/manifestVersion](https://developer.chrome.com/extensions/manifestVersion). You can unpack the CRX file using 7-Zip, modify `manifest.json` as described...
The `manifest.json` should become something like this: ``` { "update_url":"http://clients2.google.com/service/update2/crx", "manifest_version": 2, "content_security_policy": "script-src 'self'; object-src 'self';", "background": { "page": "background.html", "persistent": false }, "name": "YSlow", "version": "3.1.2", "description": "Make...