Added .rl, fixed some messages, removed liveness probe.

This commit is contained in:
2023-02-22 08:18:01 +00:00
parent fe2a863bc5
commit 219005a03e
2 changed files with 10 additions and 2 deletions

View File

@ -146,12 +146,20 @@ impl Handler for CurrencyConverter {
.or(cur_name) else{
continue;
};
let Some(nominal) = valutes
.get(cur_name)
.and_then(|info| info.get("Nominal"))
.map(ToString::to_string)
.and_then(|value| value.as_str().parse::<f64>().ok())
else{
continue;
};
let calculated = valutes
.get(cur_name)
.and_then(|info| info.get("Value"))
.map(ToString::to_string)
.and_then(|value| value.as_str().parse::<f64>().ok())
.map(|multiplier| multiplier * num_value);
.map(|multiplier| multiplier * num_value / nominal);
if let Some(value) = calculated {
calucates.push(format!(
"<pre>{num_value} {cur_name} = {value:.2} RUB</pre><br>"