chore: fix liveness and change if auth.role is empty

This commit is contained in:
Jesús Pérez Lorenzo 2021-10-14 15:05:18 +01:00
parent 7c132d9839
commit 2c1aa17e58

View File

@ -281,13 +281,13 @@ impl Cloud {
#[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct TsksrvcInfo {
pub name: String,
pub info: serde_yaml::Value,
pub info: String, // serde_yaml::Value,
pub srvc: TskSrvc,
}
#[derive(Clone, Debug, Serialize, Deserialize, Default)]
pub struct AppsrvcInfo {
pub name: String,
pub info: serde_yaml::Value,
pub info: String, // serde_yaml::Value,
pub srvc: App,
}
#[derive(Clone, Debug, Serialize, Deserialize, Default)]