From 8dfb2421e70da2c3004e7e236f14813ea0e2f9b8 Mon Sep 17 00:00:00 2001
From: OZGCloud <ozgcloud@mgm-tp.com>
Date: Tue, 17 Dec 2024 17:42:31 +0100
Subject: [PATCH] OZG-6238 fix ERR_SOCKET_TIMEOUT (3)

---
 Jenkinsfile                          | 2 +-
 Jenkinsfile.admin                    | 2 +-
 alfa-client/Dockerfile.nx-build-base | 2 +-
 alfa-client/Jenkinsfile.e2e          | 2 +-
 alfa-client/Jenkinsfile.e2e.static   | 2 +-
 alfa-client/Jenkinsfile.storybook    | 2 +-
 alfa-client/apps/info/Jenkinsfile    | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 75605774a2..bb9909e096 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -84,7 +84,7 @@ pipeline {
                         sh 'node --version'
 
                         dir('alfa-client') {
-                            sh 'pnpm install  --frozen-lockfile --network-concurrency 8'
+                            sh 'pnpm install  --frozen-lockfile --network-concurrency=8'
 
                             if (isMasterBranch()) {
                                 withSonarQubeEnv('sonarqube-ozg-sh'){
diff --git a/Jenkinsfile.admin b/Jenkinsfile.admin
index cab3056bc9..2cbdcf32b3 100644
--- a/Jenkinsfile.admin
+++ b/Jenkinsfile.admin
@@ -64,7 +64,7 @@ pipeline {
 
                     withNPM(npmrcConfig: 'npm-nexus-auth') {
                         dir('alfa-client') {
-                            sh 'pnpm install --frozen-lockfile --network-concurrency 8'
+                            sh 'pnpm install --frozen-lockfile --network-concurrency=8'
 
 	                        if (isReleaseBranch()) {
 	                        	sh 'pnpm run ci-prodBuild-admin'
diff --git a/alfa-client/Dockerfile.nx-build-base b/alfa-client/Dockerfile.nx-build-base
index 3696d8d111..98880f175f 100644
--- a/alfa-client/Dockerfile.nx-build-base
+++ b/alfa-client/Dockerfile.nx-build-base
@@ -31,4 +31,4 @@ COPY . .
 
 RUN corepack enable && corepack prepare pnpm --activate
 
-RUN pnpm install  --frozen-lockfile --network-concurrency 8 --registry=https://nexus.ozg-sh.de/repository/npm-proxy
+RUN pnpm install  --frozen-lockfile --network-concurrency=8 --registry=https://nexus.ozg-sh.de/repository/npm-proxy
diff --git a/alfa-client/Jenkinsfile.e2e b/alfa-client/Jenkinsfile.e2e
index 0aff2b24f9..32f49dd163 100644
--- a/alfa-client/Jenkinsfile.e2e
+++ b/alfa-client/Jenkinsfile.e2e
@@ -228,7 +228,7 @@ pipeline {
                     withNPM(npmrcConfig: 'npm-nexus-auth') {
                         sh 'pnpm --version'
                         dir('alfa-client') {
-                            sh 'pnpm install --frozen-lockfile --network-concurrency 8'
+                            sh 'pnpm install --frozen-lockfile --network-concurrency=8'
                             sh "pnpm run cypress:install"
                         }
                     }
diff --git a/alfa-client/Jenkinsfile.e2e.static b/alfa-client/Jenkinsfile.e2e.static
index 48e54e9241..08ecd05026 100644
--- a/alfa-client/Jenkinsfile.e2e.static
+++ b/alfa-client/Jenkinsfile.e2e.static
@@ -177,7 +177,7 @@ pipeline {
                     withNPM(npmrcConfig: 'npm-nexus-auth') {
                         sh 'pnpm --version'
                         dir('alfa-client') {
-                            sh 'pnpm install --frozen-lockfile --network-concurrency 8'
+                            sh 'pnpm install --frozen-lockfile --network-concurrency=8'
                             sh "pnpm run cypress:install"
                         }
                     }
diff --git a/alfa-client/Jenkinsfile.storybook b/alfa-client/Jenkinsfile.storybook
index 6470352671..6dacb84fdd 100644
--- a/alfa-client/Jenkinsfile.storybook
+++ b/alfa-client/Jenkinsfile.storybook
@@ -64,7 +64,7 @@ pipeline {
 
                     withNPM(npmrcConfig: 'npm-nexus-auth') {
                         dir('alfa-client') {
-                            sh 'pnpm install --frozen-lockfile --network-concurrency 8'
+                            sh 'pnpm install --frozen-lockfile --network-concurrency=8'
                             sh 'pnpm run ci-storybook'
                         }
                     }
diff --git a/alfa-client/apps/info/Jenkinsfile b/alfa-client/apps/info/Jenkinsfile
index 379ae3fd65..95e182020b 100644
--- a/alfa-client/apps/info/Jenkinsfile
+++ b/alfa-client/apps/info/Jenkinsfile
@@ -36,7 +36,7 @@ pipeline {
           FAILED_STAGE = env.STAGE_NAME
           dir('alfa-client') {
             withNPM(npmrcConfig: 'npm-nexus-auth') {
-              sh 'pnpm install --frozen-lockfile --network-concurrency 8'
+              sh 'pnpm install --frozen-lockfile --network-concurrency=8'
               sh 'npx nx run info:test'
               sh 'npx nx run info:test -- --runInBand --codeCoverage --coverageReporters=lcov --testResultsProcessor=jest-sonar-reporter && npx sonar-scanner'
 
-- 
GitLab