Commit a8fe8b9e10a8a0d5bf18b47e1f529c60c671b472
Committed by
Andrew Shvayka
1 parent
090c3699
fix typo in ConditionalOnExpression annotation
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -53,7 +53,7 @@ import java.util.concurrent.TimeUnit; |
53 | 53 | */ |
54 | 54 | @Slf4j |
55 | 55 | @Component("MqttSslHandlerProvider") |
56 | -@ConditionalOnExpression("'${transport.type:null}'=='null' || ('${transport.type}'=='local' && '${transport.http.enabled}'=='true')") | |
56 | +@ConditionalOnExpression("'${transport.type:null}'=='null' || ('${transport.type}'=='local' && '${transport.mqtt.enabled}'=='true')") | |
57 | 57 | @ConditionalOnProperty(prefix = "transport.mqtt.ssl", value = "enabled", havingValue = "true", matchIfMissing = false) |
58 | 58 | public class MqttSslHandlerProvider { |
59 | 59 | ... | ... |