Azure / Azure/azure-functions-nodejs-worker

JavaScript function app using table storage output his int64 issue

Open
#614 0 comments 0 reactions 0 assignees View on GitHub
area:nodejs-functions bug investigate P3
Dominant language
TypeScript
Stars
110
Forks
51
Avg merge
1d 1h
Merged PRs (30d)
2

Description

Create a javascript V2 function app with a table storage output and the following code:

```js
module.exports = async function (context, myTimer) {
const rowLOG = {
'partitionKey': '123',
'rowKey': '456',
'CmdAction': 5000000000 // hex such as 0x0140040000 would also repro
}

context.bindings.outputTable = [rowLOG];
};
```

You'll get the following error:
Executed 'Functions.TimerTrigger1' (Failed, Id=9a52e4e2-65b8-4384-b627-7f5769942620)
Value was either too large or too small for an Int32.

Not sure whether this is straightforward to address of there is a limitation with table storage here.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.