Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
ipgallery.common.java
/
rabbitmq
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
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
056c6041
authored
Aug 08, 2016
by
Adi Amir
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
complete debuggibng of server side + increase version
parent
6fbbf406
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
build.gradle
src/main/java/rabbitmq/server/RMQServer.java
build.gradle
View file @
056c6041
group
'com.ipgallery.common'
version
'1.0.
x
'
version
'1.0.
2
'
apply
plugin:
'java'
apply
plugin:
'maven-publish'
...
...
@@ -15,7 +15,7 @@ dependencies {
//compile 'com.google.gdata:core:1.47.1:core-1.47.1'
compile
'com.rabbitmq:amqp-client:3.6.3'
//'com.rabbitmq:rabbitmq-client:1.3.0'
compile
'com.fasterxml.jackson.core:jackson-databind:2.2.3'
compile
'com.ipgallery.common:utils:1.1.
2
'
compile
'com.ipgallery.common:utils:1.1.
3
'
compile
'com.ipgallery.common:itc:1.0.0'
testCompile
group:
'junit'
,
name:
'junit'
,
version:
'4.11'
}
...
...
src/main/java/rabbitmq/server/RMQServer.java
View file @
056c6041
...
...
@@ -85,19 +85,19 @@ public class RMQServer extends ITMManager {
try
{
// empty queue on init if configured to do so
boolean
isEmptyQueueOnLoad
=
false
;
String
strEmptyQueueOnLoad
=
System
.
getProperty
(
"rmqServer.emptyQueueOnLoad"
);
if
(
strEmptyQueueOnLoad
==
null
)
{
logSevere
(
"RMQServer::InitListenQ"
,
"failed to read 'EmptyQueueOnLoad' from config file"
,
null
);
return
false
;
}
isEmptyQueueOnLoad
=
Boolean
.
parseBoolean
(
strEmptyQueueOnLoad
);
//
boolean isEmptyQueueOnLoad = false;
//
String strEmptyQueueOnLoad = System.getProperty("rmqServer.emptyQueueOnLoad");
//
if (strEmptyQueueOnLoad == null) {
//
logSevere("RMQServer::InitListenQ", "failed to read 'EmptyQueueOnLoad' from config file", null);
//
return false;
//
}
// isEmptyQueueOnLoad = Boolean.parseBoolean(strEmptyQueueOnLoad);
// create the queue
mRMQReciever
=
new
RMQReciever
(
listenRMQId
.
getQueue
(),
listenRMQId
.
getHost
());
if
(
isEmptyQueueOnLoad
)
{
mRMQReciever
.
purge
();
}
//
if (isEmptyQueueOnLoad) {
//
mRMQReciever.purge();
//
}
logger
.
log
(
Level
.
INFO
,
"Connected successfully to: "
+
listenRMQId
.
getDescriptor
());
...
...
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