From edfd97e0b453b004b90d9477fdc7390559d8df48 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 5 Feb 2022 19:05:36 +0200 Subject: [PATCH] feat(pid_limit): expand list of errors for pid_limit feature (#3942) Expands the list of errors for pid_limit egg feature to support Steam PID errors and re-organize the list to be prettier --- .../components/server/features/PIDLimitModalFeature.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/resources/scripts/components/server/features/PIDLimitModalFeature.tsx b/resources/scripts/components/server/features/PIDLimitModalFeature.tsx index 0c01533b..9d0a57eb 100644 --- a/resources/scripts/components/server/features/PIDLimitModalFeature.tsx +++ b/resources/scripts/components/server/features/PIDLimitModalFeature.tsx @@ -24,9 +24,11 @@ const PIDLimitModalFeature = () => { const errors = [ 'pthread_create failed', - 'exception in thread "craft async scheduler management thread"', - 'unable to create new native thread', + 'failed to create thread', + 'unable to create thread', 'unable to create native thread', + 'unable to create new native thread', + 'exception in thread "craft async scheduler management thread"', ]; const listener = (line: string) => {