Added .rl, fixed some messages, removed liveness probe.
This commit is contained in:
@ -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>"
|
||||
|
Reference in New Issue
Block a user