Skip to content

Commit

Permalink
Merge branch 'master' of github-sonus21:sonus21/rqueue into fix-29-30
Browse files Browse the repository at this point in the history
# Conflicts:
#	rqueue-core/src/main/java/com/github/sonus21/rqueue/listener/PostProcessingHandler.java
#	rqueue-core/src/main/java/com/github/sonus21/rqueue/models/db/QueueConfig.java
#	rqueue-core/src/main/java/com/github/sonus21/rqueue/web/controller/RqueueViewController.java
  • Loading branch information
sonus21 committed Aug 1, 2020
2 parents 2c5dedb + 60a2b17 commit f4af2cf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,5 +1,5 @@
<div>
<img align="left" src="https://raw.githubusercontent.com/sonus21/rqueue/master/rqueue/src/main/resources/public/rqueue/img/android-chrome-192x192.png" alt="Rqueue Logo" width="90">
<img align="left" src="https://raw.githubusercontent.com/sonus21/rqueue/master/rqueue-core/src/main/resources/public/rqueue/img/android-chrome-192x192.png" alt="Rqueue Logo" width="90">
<h1 style="float:left">Rqueue: Redis Queue,Task Queue, Delayed Queue for Spring and Spring Boot</h1>
</div>

Expand Down
Expand Up @@ -29,6 +29,9 @@ public class RqueueWebConfig {
* Control whether web app is enabled or not. If it's marked false then it will throw HTTP 503
* (Service unavailable) error.
*/
@Value("${rqueue.web.url.prefix:/}")
private String urlPrefix;

@Value("${rqueue.web.enable:true}")
private boolean enable;

Expand Down
Expand Up @@ -16,4 +16,5 @@ management.endpoints.web.exposure.include=*
management.endpoint.beans.enabled=true
management.endpoint.health.enabled=true
rqueue.scheduler.delayed.message.time.interval=5000
workers.count=5
workers.count=5
rqueue.web.url.prefix=/

0 comments on commit f4af2cf

Please sign in to comment.