fixing few issues after testing

revert-dabc3590
ayyoob 8 years ago
parent 7117fdeafc
commit b14ddd609a

@ -84,7 +84,7 @@ public class MQTTEventAdapterFactory extends OutputEventAdapterFactory {
clearSession.setDisplayName(resourceBundle.getString(MQTTEventAdapterConstants.ADAPTER_CONF_CLEAN_SESSION)); clearSession.setDisplayName(resourceBundle.getString(MQTTEventAdapterConstants.ADAPTER_CONF_CLEAN_SESSION));
clearSession.setRequired(false); clearSession.setRequired(false);
clearSession.setOptions(new String[]{"true", "false"}); clearSession.setOptions(new String[]{"true", "false"});
clearSession.setDefaultValue("true"); clearSession.setDefaultValue("false");
clearSession.setHint(resourceBundle.getString(MQTTEventAdapterConstants.ADAPTER_CONF_CLEAN_SESSION_HINT)); clearSession.setHint(resourceBundle.getString(MQTTEventAdapterConstants.ADAPTER_CONF_CLEAN_SESSION_HINT));
// set Quality of Service // set Quality of Service

@ -133,7 +133,7 @@ public class DeviceAccessBasedMQTTAuthorizer implements IAuthorizer {
return false; return false;
} catch (FeignException e) { } catch (FeignException e) {
oAuthRequestInterceptor.resetApiApplicationKey(); oAuthRequestInterceptor.resetApiApplicationKey();
if (e.getMessage().contains(GATEWAY_ERROR_CODE)) { if (e.getMessage().contains(GATEWAY_ERROR_CODE) || e.status() == 404) {
log.error("Failed to connect to the device authorization service."); log.error("Failed to connect to the device authorization service.");
} else { } else {
log.error(e.getMessage(), e); log.error(e.getMessage(), e);

@ -125,6 +125,7 @@ public class OAuthRequestInterceptor implements RequestInterceptor {
public void resetApiApplicationKey() { public void resetApiApplicationKey() {
apiApplicationKey = null; apiApplicationKey = null;
tokenIssuerService = null;
} }
private static Client getSSLClient() { private static Client getSSLClient() {

Loading…
Cancel
Save