Hello,
we have observed that files uploaded from the device to the server are not 100% completed and remain in a “100% but in progress” state. The data itself is successfully transferred, but some properties are not set as expected. After the file upload, the API delivers:
{
"_uid": "4A974D48096F39AA",
"stamp": "",
"filename": "Somefile_00220414_071427.txt",
"size": 0,
"crc": "00000000",
"synclogic": "crc_stamp",
"type": "specific",
"force": "off",
"upload_info": {
"size": 1546,
"progress": 1546
}
}
Only after the device connected & disconnected again (after the actual upload), the properties are updated as expected (stamp, size, crc, upload_info
):
{
"_uid": "4A974D48096F39AA",
"stamp": "20220414071443",
"filename": "Somefile_00220414_071427.txt",
"size": 1546,
"crc": "7E061C56",
"synclogic": "crc_stamp",
"type": "specific",
"force": "off",
"upload_info": {
"size": null,
"progress": null
}
}
Why does it need another connect, what am I missing?
Thanks in advance.