Skip to content

Commit

Permalink
Merge branch 'release/v2.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Stein authored and Marc Stein committed Feb 9, 2019
2 parents d7761f5 + 56e1d20 commit 4c650cb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/services/urm/urm-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ exports = module.exports = class URMService {
requestOptions.json = data|| {};
requestOptions.transform = (data) => {
debug("Got Response from %s", uri);
debug(data);
debug("Data %O", data);

try {
data = transformFn.call(null, data);
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/log.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function RavenStream(raven) {

_.assign(record.err, {message: `${record.msg} (${record.err.message})`});

this.raven.captureException(err, options);
this.raven.captureException(record.err, options);
return next();
}
})
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gfke/gfke-support",
"version": "2.1.1",
"version": "2.1.2",
"description": "Collection of services and utils for gfke applications",
"main": "lib/index.js",
"author": {
Expand Down Expand Up @@ -41,7 +41,7 @@
"graphite-udp": "^1.0.0",
"join-path": "^1.1.0",
"koa-router": "5.4.0",
"lodash": "4.17.10",
"lodash": "4.17.11",
"lru-cache": "^4.1.3",
"moment": "^2.10.6",
"os-utils": "0.0.14",
Expand Down

0 comments on commit 4c650cb

Please sign in to comment.