Skip to content

Commit d3c89cd

Browse files
authored
Remove dangling variable
1 parent beeb5b8 commit d3c89cd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

triggerHandler/index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ const df = require("durable-functions");
66

77
module.exports = async function (context, srcBlob) {
88
const client = df.getClient(context),
9-
name = context.bindingData.name,
10-
length = srcBlob.length;
11-
9+
name = context.bindingData.name;
10+
11+
//length = srcBlob.length;
1212
//context.log("name:", name, " size:", length);
1313

1414
const instanceId = await client.startNew("renderPipeline", undefined, name);
1515

1616
//context.log("orchestrator:", instanceId);
1717

1818
return client.createCheckStatusResponse(name, instanceId)
19-
};
19+
};

0 commit comments

Comments
 (0)