Fix mqtt credentials
This commit is contained in:
parent
1e31ebe094
commit
eb0263dee8
@ -184,6 +184,10 @@ namespace ManagerService.Controllers
|
|||||||
|
|
||||||
return new OkObjectResult(instance.ToDTO());
|
return new OkObjectResult(instance.ToDTO());
|
||||||
}
|
}
|
||||||
|
catch (KeyNotFoundException ex)
|
||||||
|
{
|
||||||
|
return new NotFoundObjectResult(ex.Message) { };
|
||||||
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
return new ObjectResult(ex.Message) { StatusCode = 500 };
|
return new ObjectResult(ex.Message) { StatusCode = 500 };
|
||||||
|
|||||||
@ -32,8 +32,8 @@
|
|||||||
},
|
},
|
||||||
"ClientSettings": {
|
"ClientSettings": {
|
||||||
"Id": "ManagerService",
|
"Id": "ManagerService",
|
||||||
"UserName": "admin",
|
"UserName": "user1", //admin
|
||||||
"Password": "mdlf2021!"
|
"Password": "MyMuseum2023!" //mdlf2021!
|
||||||
},
|
},
|
||||||
"SupportedLanguages": [ "FR", "NL", "EN", "DE", "IT", "ES", "PL", "CN", "AR", "UK" ]
|
"SupportedLanguages": [ "FR", "NL", "EN", "DE", "IT", "ES", "PL", "CN", "AR", "UK" ]
|
||||||
//"Urls": "http://[::]:80"
|
//"Urls": "http://[::]:80"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user