Skip to content

Commit

Permalink
Merge pull request #416 from metrico/fix_415
Browse files Browse the repository at this point in the history
error 500 on clickhouse absence
  • Loading branch information
akvlad authored Dec 22, 2023
2 parents 5436125 + 47caf8b commit b3797b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/handlers/push.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function processStream (stream, labels, bulkLabels, bulk, toJSON, fingerPrint) {
JSONLabels.name || ''
]]))
}
return Promise.all(promises).catch(e => logger.error(e))
return Promise.all(promises)
}

async function handler (req, res) {
Expand Down

0 comments on commit b3797b8

Please sign in to comment.