Vicky
Vicky

Reputation: 889

Mule redeploy timer

Whenever we run Mule server, it gives a message on Console saying "Mule is up and kicking (every 5000ms)". I want to change this time from 5000ms to any other value. I am using Community edition of Mule server 3.5

Upvotes: 1

Views: 130

Answers (3)

siva
siva

Reputation: 1

In wrapper.conf file add the following line:

wrapper.java.additional.<n>=-Dmule.launcher.changeCheckInterval=xxxx

Upvotes: 0

ranjeeth kumar
ranjeeth kumar

Reputation: 1

start -M-Dmule.launcher.changeCheckInterval=xxxx will help.

Upvotes: 0

Ale Sequeira
Ale Sequeira

Reputation: 2039

You can configure it setting using mule.launcher.changeCheckInterval system property. Your start command should look like:

bin/mule start -M-Dmule.launcher.changeCheckInterval=3000

Alternatively you can add this line to your conf/wrapper.conf file:

wrapper.java.additional.<n>=-Dmule.launcher.changeCheckInterval=3000

where is the lower available number (if you didn't touch this file before is 4).

Upvotes: 3

Related Questions