Comparing version 0.1.71 to 0.1.72
@@ -246,2 +246,3 @@ "use strict"; | ||
if (err.statusCode === 403) { | ||
this._stopping = true; | ||
throw new _exceptions.RookInvalidToken(this.token); | ||
@@ -248,0 +249,0 @@ } |
@@ -181,4 +181,4 @@ "use strict"; | ||
return { | ||
"version": "0.1.71", | ||
"commit": "e6cea27a0d54c9bbefa0798e4870a9eb5ff185e4" | ||
"version": "0.1.72", | ||
"commit": "1987074b592d7cbffba3e7a81215a034727a87b6" | ||
}; | ||
@@ -185,0 +185,0 @@ } |
@@ -30,4 +30,4 @@ "use strict"; | ||
this.VersionConfiguration = { | ||
VERSION: "0.1.71", | ||
COMMIT: "e6cea27a0d54c9bbefa0798e4870a9eb5ff185e4" | ||
VERSION: "0.1.72", | ||
COMMIT: "1987074b592d7cbffba3e7a81215a034727a87b6" | ||
}; | ||
@@ -34,0 +34,0 @@ this.DefaultConfiguration = { |
{ | ||
"name": "rookout", | ||
"commit": "e6cea27a0d54c9bbefa0798e4870a9eb5ff185e4", | ||
"version": "0.1.71", | ||
"commit": "1987074b592d7cbffba3e7a81215a034727a87b6", | ||
"version": "0.1.72", | ||
"description": "Rook is a package for on the fly debugging and data extraction for applications in production", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
@@ -345,4 +345,10 @@ "use strict"; | ||
variant.setVariantType(proto.Variant.Type.VARIANT_CODE_OBJECT); | ||
let functionName = ''; | ||
try { | ||
functionName = namespace.readAttribute('name').obj; | ||
} catch (e) {} | ||
let codeValue = new proto.Variant.CodeObject(); | ||
codeValue.setName(namespace.readAttribute('name').obj); | ||
codeValue.setName(functionName); | ||
variant.setCodeValue(codeValue); | ||
@@ -349,0 +355,0 @@ return; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2562590
22701