Commit 4a722fc28e0df7ab0404d93585b701b97ebf10b4

Authored by Adhidarma Hadiwinoto
1 parent 69331bf37e
Exists in master

include reqid label di dump webhook

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

lib/webhook-sender.js
... ... @@ -37,7 +37,7 @@ const dumper = async (xid, webhookType, body) => {
37 37 const filename = [
38 38 [moment().format('YYYYMMDD-HHmmssSSS'), xid].join('_'),
39 39 webhookType,
40   - body.request_id,
  40 + body.request_id && ['reqid', body.request_id].join('_'),
41 41 'json',
42 42 ].filter((item) => item).join('.');
43 43