-
Notifications
You must be signed in to change notification settings - Fork 11k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(apps): runtime orchestration fixes (#34205)
- Loading branch information
Showing
12 changed files
with
121 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
'@rocket.chat/fuselage-ui-kit': patch | ||
'@rocket.chat/instance-status': patch | ||
'@rocket.chat/ui-theming': patch | ||
'@rocket.chat/model-typings': patch | ||
'@rocket.chat/ui-video-conf': patch | ||
'@rocket.chat/uikit-playground': patch | ||
'@rocket.chat/core-typings': patch | ||
'@rocket.chat/rest-typings': patch | ||
'@rocket.chat/apps-engine': patch | ||
'@rocket.chat/ui-composer': patch | ||
'@rocket.chat/ui-contexts': patch | ||
'@rocket.chat/gazzodown': patch | ||
'@rocket.chat/ui-avatar': patch | ||
'@rocket.chat/ui-client': patch | ||
'@rocket.chat/livechat': patch | ||
'@rocket.chat/ui-voip': patch | ||
'@rocket.chat/i18n': patch | ||
'@rocket.chat/meteor': patch | ||
--- | ||
|
||
Fixes an error where the engine would not retry a subprocess restart if the last attempt failed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
'@rocket.chat/fuselage-ui-kit': patch | ||
'@rocket.chat/instance-status': patch | ||
'@rocket.chat/ui-theming': patch | ||
'@rocket.chat/model-typings': patch | ||
'@rocket.chat/ui-video-conf': patch | ||
'@rocket.chat/uikit-playground': patch | ||
'@rocket.chat/core-typings': patch | ||
'@rocket.chat/rest-typings': patch | ||
'@rocket.chat/apps-engine': patch | ||
'@rocket.chat/ui-composer': patch | ||
'@rocket.chat/ui-contexts': patch | ||
'@rocket.chat/gazzodown': patch | ||
'@rocket.chat/ui-avatar': patch | ||
'@rocket.chat/ui-client': patch | ||
'@rocket.chat/livechat': patch | ||
'@rocket.chat/ui-voip': patch | ||
'@rocket.chat/i18n': patch | ||
'@rocket.chat/meteor': patch | ||
--- | ||
|
||
Fixes error propagation when trying to get the status of apps in some cases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
'@rocket.chat/fuselage-ui-kit': patch | ||
'@rocket.chat/instance-status': patch | ||
'@rocket.chat/ui-theming': patch | ||
'@rocket.chat/model-typings': patch | ||
'@rocket.chat/ui-video-conf': patch | ||
'@rocket.chat/uikit-playground': patch | ||
'@rocket.chat/core-typings': patch | ||
'@rocket.chat/rest-typings': patch | ||
'@rocket.chat/apps-engine': patch | ||
'@rocket.chat/ui-composer': patch | ||
'@rocket.chat/ui-contexts': patch | ||
'@rocket.chat/gazzodown': patch | ||
'@rocket.chat/ui-avatar': patch | ||
'@rocket.chat/ui-client': patch | ||
'@rocket.chat/livechat': patch | ||
'@rocket.chat/ui-voip': patch | ||
'@rocket.chat/i18n': patch | ||
'@rocket.chat/meteor': patch | ||
--- | ||
|
||
Fixes wrong data being reported to total failed apps metrics and statistics |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { parseArgs as $parseArgs } from "https://jsr.io/@std/cli/1.0.9/parse_args.ts"; | ||
|
||
export type ParsedArgs = { | ||
subprocess: string; | ||
spawnId: number; | ||
metricsReportFrequencyInMs?: number; | ||
} | ||
|
||
export function parseArgs(args: string[]): ParsedArgs { | ||
return $parseArgs(args); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters