Kafka tests (#944)

A simple test for Kafka integration which runs locally provided cluster has Kafka and Fission install has Kafka integratiom enabled (mqtrigger-kafka deployment present).
This commit is contained in:
Vishal
2018-10-22 20:07:51 +05:30
committed by GitHub
parent 619b390af3
commit e7f1d4564a
12 changed files with 159 additions and 121 deletions
+9
View File
@@ -0,0 +1,9 @@
module.exports = async function (context) {
console.log(context.request.body);
let obj = context.request.body;
return {
status: 200,
body: obj
};
}