Jai
Jai

Reputation: 79

Does Mule community edition v3.3.0 support shutdownTimeout

Does Mule community edition v3.3.0 support shutdownTimeout feature?

The documentation at http://www.mulesoft.org/documentation/display/current/Global+Settings+Configuration+Reference suggests that the shutdowntimeout feature is supported from v2.2.0 but I am not able to get that shutdownTimeout feature to work?

Does anybody has implemented that shutdown feature in Mule v3.3.0 CE? Please help me in configuring that and get that feature to work.

Is this feature available only for EE or it is available in CE too?

Upvotes: 1

Views: 243

Answers (1)

MarcosNC
MarcosNC

Reputation: 356

the attribute is present and taken into account in 3.3.0. In order to use it you should add a configuration tag in your config file and set a value for that attribute:

<mule>
...
  <configuration shutdownTimeout="60000" />
...

However, as reported in https://www.mulesoft.org/jira/browse/MULE-6816 depending on the message processors present in your flow, the shutdown process could fail, if that's the case you could review the code changes in the fix and apply them.

What problem are you facing?

Regards, Marcos

Upvotes: 2

Related Questions