Why my package deploy status is always abort when deploy large file?
When I deploy my package to remote thing, if the package file size is a little big, 10Mb for example, the status of deployment is always abort and the temporary downloaded file size is just xxKb.
But if the package file size is 10Kb, it will download ok and deploy complete every time.
So my question is WSEMS or LSR have any special paramaters for configuration?
My config.json is:
{
"http_server": {
"host": "localhost",
"port": 8000
},
"ws_servers": [{
"host": "192.168.1.2",
"port": 8080
}],
"appKey": "xxxxxxxx",
"logger": {
"level": "INFO",
"audit_target": "file://",
"publish_directory": "/mnt/flash/",
"publish_level": "TRACE",
"max_file_storage": 2000000,
"auto_flush": true
},
"ws_connection": {
"encryption": "none",
"verbose": true,
"connect_timeout": 10000,
"connect_retry_interval": 10000,
"socket_read_timeout": 100,
"connect_on_demand": true,
"max_threads": 8,
"frame_read_timeout": 10000
},
"certificates": {
"validate": false,
"allow_self_signed": true
},
"file": {
"virtual_dirs": [{
"in": "/mnt/"
}, {
"updates": "/mnt/"
}, {
"out": "/mnt/flash"
}],
"staging_dir": "/mnt/"
}
}
Thanks

