You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2014/11/30 15:13:12 UTC

[jira] [Commented] (CAMEL-7914) MQTT Endpoint disconnects on failure. Does not reconnect

    [ https://issues.apache.org/jira/browse/CAMEL-7914?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14229108#comment-14229108 ] 

Claus Ibsen commented on CAMEL-7914:
------------------------------------

You can configure the max reconnect attempts on the configuration / endpoint. Have you tried that?

> MQTT Endpoint disconnects on failure. Does not reconnect
> --------------------------------------------------------
>
>                 Key: CAMEL-7914
>                 URL: https://issues.apache.org/jira/browse/CAMEL-7914
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-mqtt
>    Affects Versions: 2.14.0
>            Reporter: Davy De Waele
>
> When an error occurs in the Camel MQTT endpoint, the CallbackConnection onFailure callback simply disconnects the connection.
> At that point there doesn't seem to be any mechanism to reconnect to the broker.
> {noformat}
>             public void onFailure(Throwable value) {
>                 connection.disconnect(new Callback<Void>() {
>                     public void onSuccess(Void value) {
>                     }
>                     public void onFailure(Throwable e) {
>                         LOG.debug("Failed to disconnect from " + configuration.getHost() + ". This exception is ignored.", e);
>                     }
>                 });
>             }
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)