We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beeb5b8 commit d3c89cdCopy full SHA for d3c89cd
triggerHandler/index.js
@@ -6,14 +6,14 @@ const df = require("durable-functions");
6
7
module.exports = async function (context, srcBlob) {
8
const client = df.getClient(context),
9
- name = context.bindingData.name,
10
- length = srcBlob.length;
11
-
+ name = context.bindingData.name;
+
+ //length = srcBlob.length;
12
//context.log("name:", name, " size:", length);
13
14
const instanceId = await client.startNew("renderPipeline", undefined, name);
15
16
//context.log("orchestrator:", instanceId);
17
18
return client.createCheckStatusResponse(name, instanceId)
19
-};
+};
0 commit comments