mirror of https://github.com/OpenVidu/openvidu.git
Updated META-INF and dotenv.path property position
parent
69f28ce7a4
commit
675de73351
|
@ -333,12 +333,12 @@ public class KurentoParticipant extends Participant {
|
|||
}
|
||||
} else {
|
||||
log.error(
|
||||
"Timeout waiting for PublisherEndpoint closing lock of participant {} to be available for participant {} to call cancelReceveivingMedia",
|
||||
"Timeout waiting for PublisherEndpoint closing lock of participant {} to be available for participant {} to call cancelReceivingMedia",
|
||||
senderName, this.getParticipantPublicId());
|
||||
}
|
||||
} catch (InterruptedException e) {
|
||||
log.error(
|
||||
"InterruptedException while waiting for PublisherEndpoint closing lock of participant {} to be available for participant {} to call cancelReceveivingMedia",
|
||||
"InterruptedException while waiting for PublisherEndpoint closing lock of participant {} to be available for participant {} to call cancelReceivingMedia",
|
||||
senderName, this.getParticipantPublicId());
|
||||
} finally {
|
||||
// Always clean map
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
{"properties": [
|
||||
{
|
||||
"properties": [
|
||||
{
|
||||
"name": "dotenv.path",
|
||||
"type": "java.lang.String",
|
||||
"description": "Path to the .env configuration file"
|
||||
},
|
||||
{
|
||||
"name": "kms.uris",
|
||||
"type": "java.lang.String",
|
||||
|
@ -217,10 +223,6 @@
|
|||
"name": "certificate.type",
|
||||
"type": "java.lang.String",
|
||||
"description": "A description for 'certificate.type'"
|
||||
},
|
||||
{
|
||||
"name": "dotenvpath",
|
||||
"type": "java.lang.String",
|
||||
"description": "A description for 'dotenvpath'"
|
||||
}
|
||||
]}
|
||||
]
|
||||
}
|
|
@ -1,3 +1,5 @@
|
|||
dotenv.path=.
|
||||
|
||||
server.address=0.0.0.0
|
||||
server.ssl.enabled=true
|
||||
server.port=4443
|
||||
|
@ -44,5 +46,3 @@ coturn.redis.ip=127.0.0.1
|
|||
coturn.redis.dbname=0
|
||||
coturn.redis.password=turn
|
||||
coturn.redis.connect-timeout=30
|
||||
|
||||
dotenv.path=.
|
||||
|
|
Loading…
Reference in New Issue