Browse Source

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

vmshay 5 years ago
parent
commit
ae16a888cd
1 changed files with 2 additions and 1 deletions
  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
 	}
 }