Skip to content

Commit

Permalink
remove colons from message (#565)
Browse files Browse the repository at this point in the history
  • Loading branch information
juandspy authored Oct 27, 2022
1 parent 52d2d32 commit 7ad472e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api-mock/src/handlers/kafka-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function createKafkaHandlers(preSeed) {

if (!providers.includes(cloudProvider)) {
return res.status(400).json({
reason: `provider '${req.body.cloud_provider}' is not supported, supported providers are: ${providers.join(", ")}`,
reason: `provider ${req.body.cloud_provider} is not supported, supported providers are: ${providers.join(", ")}`,
...commonError,
});
}
Expand Down

0 comments on commit 7ad472e

Please sign in to comment.