mirror of
https://github.com/metrico/qryn.git
synced 2025-03-15 10:14:19 +00:00
Merge branch 'master' into fix/494_axios_error
This commit is contained in:
@ -23,7 +23,7 @@
|
||||
* **Secure**: Retain total control of data, using **ClickHouse**, **DuckDB** or **InfluxDB** IOx with **S3** object storage
|
||||
* **Indepentent**: Opensource, Community powered, Anti lock-in alternative to Vendor controlled stacks
|
||||
|
||||

|
||||
<!--  -->
|
||||
|
||||
|
||||
<br>
|
||||
|
@ -260,7 +260,7 @@ const parsers = {
|
||||
const parser = find(parsers._parsers, [contentType, req.routeOptions.method, req.routeOptions.url]) ||
|
||||
find(parsers._parsers, ['*', req.routeOptions.method, req.routeOptions.url])
|
||||
if (!parser) {
|
||||
throw new Error('undefined parser')
|
||||
throw new Error(`undefined parser for ${contentType} ${req.routeOptions.method} ${req.routeOptions.url}`)
|
||||
}
|
||||
return await parser(req, payload)
|
||||
},
|
||||
|
Reference in New Issue
Block a user