Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/util/project-info.ts
5759 views
1
export const pidFilename = "project.pid";
2
3
// pid file updated once every 30s -- see https://github.com/sagemathinc/cocalc/issues/7325
4
export const pidUpdateIntervalMs = 1000 * 30;
5
6
7