Remove unnessessary yaml config
This commit is contained in:
parent
bbde3b4b45
commit
579a793f40
@ -746,7 +746,7 @@ transport:
|
|||||||
# MQTT SSL configuration
|
# MQTT SSL configuration
|
||||||
ssl:
|
ssl:
|
||||||
# Enable/disable SSL support
|
# Enable/disable SSL support
|
||||||
enabled: "${MQTT_SSL_ENABLED:true}"
|
enabled: "${MQTT_SSL_ENABLED:false}"
|
||||||
# MQTT SSL bind address
|
# MQTT SSL bind address
|
||||||
bind_address: "${MQTT_SSL_BIND_ADDRESS:0.0.0.0}"
|
bind_address: "${MQTT_SSL_BIND_ADDRESS:0.0.0.0}"
|
||||||
# MQTT SSL bind port
|
# MQTT SSL bind port
|
||||||
@ -760,11 +760,11 @@ transport:
|
|||||||
# PEM server credentials
|
# PEM server credentials
|
||||||
pem:
|
pem:
|
||||||
# Path to the server certificate file (holds server certificate or certificate chain, may include server private key)
|
# Path to the server certificate file (holds server certificate or certificate chain, may include server private key)
|
||||||
cert_file: "${MQTT_SSL_PEM_CERT:/home/developer/x509/server.pem}"
|
cert_file: "${MQTT_SSL_PEM_CERT:mqttserver.pem}"
|
||||||
# Path to the server certificate private key file. Optional by default. Required if the private key is not present in server certificate file;
|
# Path to the server certificate private key file. Optional by default. Required if the private key is not present in server certificate file;
|
||||||
key_file: "${MQTT_SSL_PEM_KEY:/home/developer/x509/server_key.pem}"
|
key_file: "${MQTT_SSL_PEM_KEY:mqttserver_key.pem}"
|
||||||
# Server certificate private key password (optional)
|
# Server certificate private key password (optional)
|
||||||
key_password: "${MQTT_SSL_PEM_KEY_PASSWORD:}"
|
key_password: "${MQTT_SSL_PEM_KEY_PASSWORD:server_key_password}"
|
||||||
# Keystore server credentials
|
# Keystore server credentials
|
||||||
keystore:
|
keystore:
|
||||||
# Type of the key store (JKS or PKCS12)
|
# Type of the key store (JKS or PKCS12)
|
||||||
|
|||||||
@ -74,7 +74,6 @@ import static org.mockito.Mockito.when;
|
|||||||
@ContextConfiguration(classes = DeviceProvisionServiceImpl.class)
|
@ContextConfiguration(classes = DeviceProvisionServiceImpl.class)
|
||||||
public class DeviceProvisionServiceTest {
|
public class DeviceProvisionServiceTest {
|
||||||
|
|
||||||
|
|
||||||
@MockBean
|
@MockBean
|
||||||
protected TbQueueProducerProvider producerProvider;
|
protected TbQueueProducerProvider producerProvider;
|
||||||
@MockBean
|
@MockBean
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user