Skip to content

Commit

Permalink
Do not log files content in HOMS.attach_files method
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed May 30, 2019
1 parent 1c7fd3f commit f51e713
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/org/camunda/latera/bss/connectors/HOMS.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ class HOMS {
def newFiles = this.http.sendRequest(
'post',
path: '/widget/file_upload',
body: body
body: body,
supressRequestBodyLog: true
)
if (save) {
def existingFiles = JSON.from(execution.getVariable('homsOrderDataFileList'))
Expand Down
3 changes: 1 addition & 2 deletions src/org/camunda/latera/bss/connectors/Imprint.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,12 @@ class Imprint {
todayFull : DateTimeUtil.format(DateTimeUtil.local(), DateTimeUtil.FULL_DATE_FORMAT, this.locale)
] + data
]
def result = this.http.sendRequest(
def file = this.http.sendRequest(
'post',
path : '/api/print',
body : body,
contentType : 'application/json'
)
def file = result
return file
}
}

0 comments on commit f51e713

Please sign in to comment.