Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions messages/datacodeBinaryExecutor.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ Failed to deploy package '%s': %s
- Check the datacustomcode binary is properly installed
- Review the error message for specific issues
- Ensure the package is properly initialized and zipped
- Check the UI. The failure may have occurred when polling status

# error.runAuthenticationFailed

Expand Down
2 changes: 1 addition & 1 deletion src/utils/datacodeBinaryExecutor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export class DatacodeBinaryExecutor {
return new Promise((resolve, reject) => {
debug('deploy spawn: datacustomcode %o', args);
const child = spawn('datacustomcode', args, {
timeout: 300_000,
timeout: 600_000,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For this to matter you'll also have to bump the python cli timeout

env: { ...process.env, PYTHONUNBUFFERED: '1' },
});

Expand Down
Loading