Anyone run into an issue when deploying/uploading ...
# suitecommerce
k
Anyone run into an issue when deploying/uploading a theme? It seems to take much longer than it has in the past to upload (10-15m) and it errors out after uploading the final chunk.
Copy code
[10:50:11] 'startDeploy' errored after 13 min
[10:50:11] TypeError: Cannot read property 'files' of undefined
    at gulp/extension-mechanism/deploy/deploy.js:174:70
g
I have seen this too. Looked up resolution in help center and there was a note about changing the chunk_size in the gulp config file Keep checking in the netsuite account to see if it is actually uploading your theme / extension If you can run an activation on it it may be missing some files. I would delete the local and deploy distribution folders and update to a new version in the manifest of your theme/extension Good luck!
m
Yes I've been running into the same issues. I'm trying to try the above mentioned solution, but deployment is also incredibly slow with random hang-ups processing certain chunks.
So I reduced the
chunk_size
from
80
to
50
and still got the same error. They didn't specify a number to use, but it increased my chunks from 13 to 20 and time to deploy quite a bit.
So I logged out the response of
ns-deploy
inside the gulp task and after some trial and error I got the following error:
Copy code
{
  error: {
    code: 'SSS_USAGE_LIMIT_EXCEEDED',
    message: 'Script Execution Usage Limit Exceeded'
  }
}