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