Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
N
node-bigstream
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bs
node-bigstream
Commits
fa04387b
Commit
fa04387b
authored
Jul 04, 2019
by
Kamron Aroonrua
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove Storage RPC Feature
parent
2af6482c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
worker.js
jobworker/worker.js
+3
-1
main.js
storage-service/main.js
+4
-1
No files found.
jobworker/worker.js
View file @
fa04387b
...
@@ -32,7 +32,9 @@ var JW = function JobWorker (prm)
...
@@ -32,7 +32,9 @@ var JW = function JobWorker (prm)
this
.
job_registry
=
JobRegistry
.
create
({
'redis'
:
this
.
mem
});
this
.
job_registry
=
JobRegistry
.
create
({
'redis'
:
this
.
mem
});
this
.
acl_validator
=
ACLValidator
.
create
(
this
.
auth_cfg
);
this
.
acl_validator
=
ACLValidator
.
create
(
this
.
auth_cfg
);
this
.
storagecaller
=
new
SSCaller
({
'url'
:
SS_URL
});
/* Disable RPC Feature */
//this.storagecaller = new SSCaller({'url':SS_URL});
this
.
storagecaller
=
null
;
}
}
JW
.
prototype
.
start
=
function
()
JW
.
prototype
.
start
=
function
()
...
...
storage-service/main.js
View file @
fa04387b
...
@@ -52,7 +52,10 @@ SS.prototype.start = function()
...
@@ -52,7 +52,10 @@ SS.prototype.start = function()
{
{
console
.
log
(
'Starting Storage Service ...
\
n'
);
console
.
log
(
'Starting Storage Service ...
\
n'
);
this
.
amqp_start
();
this
.
amqp_start
();
this
.
ipc_start
();
/* Disable RPC Feature */
//this.ipc_start();
setTimeout
(
function
(){
setTimeout
(
function
(){
this
.
http_start
();
this
.
http_start
();
},
5000
);
},
5000
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment