1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 17:14:08 +02:00

bump dependencies

This commit is contained in:
Robin Appelman 2023-07-11 20:49:43 +02:00
commit ae918e2dd1
3 changed files with 311 additions and 604 deletions

View file

@ -491,7 +491,7 @@ impl Cloud {
Some(filter) => cloud_id.contains(filter),
None => true,
} {
let mut entry = containers_by_id.entry(cloud_id.to_string()).or_default();
let entry = containers_by_id.entry(cloud_id.to_string()).or_default();
if labels.get("haze-type").map(String::as_str) == Some("cloud") {
let info = docker.inspect_container(cloud_id, None).await.ok();
entry.0 = Some(container);