Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

Commit

Permalink
v1.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
czy88840616 committed Dec 11, 2018
1 parent c05d470 commit fdda32d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"packages": [
"packages/*"
],
"version": "1.10.4",
"version": "1.10.5",
"registry": "https://registry.npmjs.org/",
"npmClient": "npm"
}
4 changes: 2 additions & 2 deletions packages/hook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pandora-hook",
"version": "1.10.4",
"version": "1.10.5",
"description": "pandora module hook",
"main": "dist/index",
"typings": "dist/index.d.ts",
Expand All @@ -25,7 +25,7 @@
"cls-bluebird": "^2.1.0",
"debug": "^3.1.0",
"is-type-of": "^1.2.0",
"pandora-metrics": "^1.10.4",
"pandora-metrics": "^1.10.5",
"semver": "^5.4.1",
"xorshift": "^1.1.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/metrics/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pandora-metrics",
"version": "1.10.4",
"version": "1.10.5",
"main": "dist/index",
"typings": "dist/index.d.ts",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/metrics/src/MetricsClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ export class MetricsClient extends AbstractIndicator {
if ((<Proxiable>metric).proxyMethod && (<Proxiable>metric).proxyMethod.length) {
for (let method of (<Proxiable>metric).proxyMethod) {
metric[ method ] = (...args) => {
this.debug(`Invoke: invoke name = ${newName.getNameKey()}, type = ${metric.type}, method = ${method}, value = ${args}`);
this.debug(`Invoke: invoke name = ${newName.getNameKey()}, type = ${(<Proxiable>metric).type}, method = ${method}, value = ${args}`);
this.report({
action: MetricsConstants.EVT_METRIC_UPDATE,
name: newName.getNameKey(),
method: method,
value: args,
type: metric.type,
type: (<Proxiable>metric).type,
clientId: this.clientId
});
};
Expand Down
6 changes: 3 additions & 3 deletions packages/pandora/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pandora",
"version": "1.10.4",
"version": "1.10.5",
"description": "A powerful and lightweight application manager for Node.js applications powered by TypeScript.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down Expand Up @@ -42,10 +42,10 @@
"mz": "^2.7.0",
"pandora-dollar": "^1.10.2",
"pandora-env": "^1.10.2",
"pandora-hook": "^1.10.4",
"pandora-hook": "^1.10.5",
"pandora-hub": "^1.10.2",
"pandora-messenger": "^1.10.2",
"pandora-metrics": "^1.10.4",
"pandora-metrics": "^1.10.5",
"pandora-service-logger": "^1.10.2",
"pandora-spawn-wrap": "^1.0.3",
"read-last-lines": "^1.4.0",
Expand Down

0 comments on commit fdda32d

Please sign in to comment.