Skip to content

Commit

Permalink
Merge pull request #64 from onixjs/development
Browse files Browse the repository at this point in the history
Release 1.0.0-beta.5.2
  • Loading branch information
jonathan-casarrubias committed Jul 21, 2018
2 parents a0a63eb + 19f3150 commit a704072
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onixjs/core",
"version": "1.0.0-beta.5.1",
"version": "1.0.0-beta.5.2",
"description": "An Enterprise Grade NodeJS Platform that implements Industry Standards and Patterns in order to provide Connectivity, Stability, High-Availability and High-Performance.",
"main": "dist/src/index.js",
"scripts": {
Expand Down Expand Up @@ -49,7 +49,7 @@
},
"dependencies": {
"@onixjs/enumerable": "1.0.0-alpha.7",
"@onixjs/sdk": "^1.0.0-beta.4",
"@onixjs/sdk": "^1.0.0-beta.5",
"finalhandler": "^1.1.1",
"reflect-metadata": "^0.1.12",
"router": "^1.3.2"
Expand Down
5 changes: 3 additions & 2 deletions src/core/host.broker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,9 @@ export class HostBroker {
// Verify the client is actually registered in this onixjs host
this.registers[operation.message.request.metadata.register] &&
// Also make sure this is a RPC or STREAM Unsubscription calls
(OperationType.ONIX_REMOTE_CALL_PROCEDURE ||
OperationType.ONIX_REMOTE_CALL_STREAM_UNSUBSCRIBE)
(operation.type === OperationType.ONIX_REMOTE_CALL_PROCEDURE ||
operation.type === OperationType.ONIX_REMOTE_CALL_STREAM ||
operation.type === OperationType.ONIX_REMOTE_CALL_STREAM_UNSUBSCRIBE)
) {
// Add a new listener for this client subscription stream
const index: number = this.registers[
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class OnixJS {
* @description Current Onix Version.
*/
get version(): string {
return '1.0.0-beta.5.1';
return '1.0.0-beta.5.2';
}
/**
* @property router
Expand Down

0 comments on commit a704072

Please sign in to comment.