Parcourir la source

Обновить 'Jenkins/jenkinsfile'

vmshay il y a 5 ans
Parent
commit
ae16a888cd
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      Jenkins/jenkinsfile

+ 2 - 1
Jenkins/jenkinsfile

@@ -6,9 +6,10 @@ def GetLog(build_url) {
     	responce = httpRequest(httpMode: 'GET',
 		url: build_url + 'consoleText',
 		contentType: 'TEXT_PLAIN',
+		consoleLogResponseBody: true,
 		customHeaders:[[name:'Authorization', value:"Basic ${auth}"]],
 		validResponceCodes: '200')
-		return response.content
+		return response
 	}
 }