Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
ipgallery.common.java
/
microservice
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Registry
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a1e71715
authored
Mar 03, 2019
by
Amir Aharon
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fix Pulsar Params Builder
parent
ad8e30cf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
doc/pulsar.txt
src/main/java/microservice/params/PulsarParams.java
src/test/java/microservice/TestMicroserviceApp.java
doc/pulsar.txt
View file @
a1e71715
...
...
@@ -6,7 +6,7 @@ docker run -it -p 80:80 -p 8080:8080 -p 6650:6650 apachepulsar/pulsar-standalone
- show tenant
curl -s http://localhost:8080/admin/v2/tenants/mcz
- show namespaces
curl -s http://localhost:8080/admin/v2/namespaces/mcx/publish
curl -s http://localhost:8080/admin/v2/namespaces/mcx/publish
[pulsar-admin]
run "docker exec -it [pulsar-standalone-instance] bash"
...
...
src/main/java/microservice/params/PulsarParams.java
View file @
a1e71715
...
...
@@ -66,7 +66,7 @@ public class PulsarParams {
try
{
if
(
adminUrl
==
null
)
{
String
host
=
serviceUrl
.
substring
(
0
,
serviceUrl
.
indexOf
(
':'
));
adminUrl
=
String
.
format
(
"%s:%
u
"
,
host
,
DEFAULT_ADMIN_PORT
);
adminUrl
=
String
.
format
(
"%s:%
d
"
,
host
,
DEFAULT_ADMIN_PORT
);
}
if
(
consumersThreadPoolSize
==
0
){
consumersThreadPoolSize
=
Runtime
.
getRuntime
().
availableProcessors
();
...
...
src/test/java/microservice/TestMicroserviceApp.java
View file @
a1e71715
...
...
@@ -103,7 +103,7 @@ public class TestMicroserviceApp {
.
build
();
CommonServices
.
IService
pulsarPubSub
=
ServiceBuilderFactory
.
createPubSubServicePulsarBuilder
(
CommonServices
.
EnumPubSubServiceMode
.
E_BOTH
)
.
setServiceUrl
(
"localhost:6650"
)
.
setAdminUrl
(
"localhost:8080"
)
.
setAdminUrl
(
null
)
.
setClusters
(
"standalone"
)
.
build
();
...
...
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