You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The proposal of this issue is to allow marketplace/services itens to set it's own timeout, adding a new timeout (or any more suitable name) property to the Manifest/Schema.
The resoanable behind this is that some complex systems will get longer to install and the 600s seconds are not enough to the task to complete. Take n8n as example:
root@172884ae19ab:/app/html# time mise x node@20 -- npm install n8n
gpg: Signature made Tue Jan 21 16:54:47 2025 UTC
gpg: using RSA key 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4
gpg: Good signature from "RafaelGSS <[email protected]>" [expired]
npm warn deprecated [email protected]: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
npm warn deprecated [email protected]: This package is no longer supported.
npm warn deprecated [email protected]: This package is no longer supported.
npm warn deprecated @npmcli/[email protected]: This functionality has been moved to @npmcli/fs
npm warn deprecated [email protected]: Rimraf versions prior to v4 are no longer supported
npm warn deprecated [email protected]: This package is no longer supported.
npm warn deprecated @aws-sdk/[email protected]: This package has moved to @smithy/node-http-handler
npm warn deprecated @azure/[email protected]: This package is no longer supported. Please refer to https://github.com/Azure/azure-sdk-for-js/blob/490ce4dfc5b98ba290dee3b33a6d0876c5f138e2/sdk/core/README.md
npm warn deprecated [email protected]: dommatrix is no longer maintained. Please use @thednp/dommatrix.
npm warn deprecated [email protected]: Package is no longer maintained
npm warn deprecated @aws-sdk/[email protected]: This package has moved to @smithy/signature-v4
npm warn deprecated @aws-sdk/[email protected]: This package has moved to @smithy/protocol-http
npm warn deprecated [email protected]: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
npm warn deprecated [email protected]: Glob versions prior to v9 are no longer supported
npm warn deprecated [email protected]: Glob versions prior to v9 are no longer supported
npm warn deprecated [email protected]: Glob versions prior to v9 are no longer supported
npm warn deprecated [email protected]: Rimraf versions prior to v4 are no longer supported
npm warn deprecated [email protected]: Glob versions prior to v9 are no longer supported
npm warn deprecated [email protected]: Glob versions prior to v9 are no longer supported
npm warn deprecated [email protected]: Glob versions prior to v9 are no longer supported
added 2150 packages in 5m
195 packages are looking for funding
run `npm fund`for details
npm notice
npm notice New major version of npm available! 10.8.2 -> 11.0.0
npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.0.0
npm notice To update run: npm install -g [email protected]
npm notice
real 5m35.971s
user 2m41.475s
sys 0m45.573s
root@172884ae19ab:/app/html#
Allowing the marketplace/service item to define the time it needs to complete will be great.
Obviously, some default and sanity checks would be nice to add either.
The text was updated successfully, but these errors were encountered:
The
CreateScheduledTask
DTO have a property calledTimeoutSecs
:os/src/domain/dto/createScheduledTask.go
Lines 5 to 11 in 26eade4
The default value for the timeout is
600
, as we can see in the implementations ofservices
andmarketplace
:os/src/presentation/service/marketplace.go
Lines 225 to 229 in 26eade4
os/src/presentation/service/services.go
Lines 422 to 426 in 26eade4
The proposal of this issue is to allow marketplace/services itens to set it's own timeout, adding a new
timeout
(or any more suitable name) property to the Manifest/Schema.The resoanable behind this is that some complex systems will get longer to install and the 600s seconds are not enough to the task to complete. Take n8n as example:
Allowing the marketplace/service item to define the time it needs to complete will be great.
Obviously, some default and sanity checks would be nice to add either.
The text was updated successfully, but these errors were encountered: