-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address #157 - Update IslandoraSync to use a configurable activeMQ br… #158
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
<cm:property name="islandora.drupal.password" value=""/> | ||
<cm:property name="islandora.fcrepo.baseurl" value="localhost:8080/fcrepo/rest"/> | ||
<cm:property name="islandora.php.workingDir" value="/home/vagrant/islandora/camel/commands/bin"/> | ||
<cm:property name="islandora.brokerUrl" value="localhost:61616"/> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should also be |
||
</cm:default-properties> | ||
</cm:property-placeholder> | ||
|
||
|
@@ -34,4 +35,9 @@ | |
<routeContextRef ref="drupalAuthentication"/> | ||
</camelContext> | ||
|
||
<!-- configuration of activemq component --> | ||
<bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent"> | ||
<property name="islandora.brokerUrl" value="${islandora.brokerUrl}"/> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @whikloj , since brokers don't run on HTTP (TCP), should we add the prefix directly to where we are going to use this instead of allowing people to decide on the cfg? I mean, tripe store does not use http:// in ca.islandora.sync.cfg There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @DiegoPino sorry I totally missed this. Because you could have |
||
</bean> | ||
|
||
</blueprint> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be
tcp://localhost:61616
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doh. updating now.