1
0
Fork 0
mirror of https://codeberg.org/icewind/haze.git synced 2026-06-03 09:04:12 +02:00

redis tls env

This commit is contained in:
Robin Appelman 2025-05-02 12:30:57 +02:00
commit 7419a32685
14 changed files with 313 additions and 8 deletions

View file

@ -584,7 +584,11 @@ impl Cloud {
let found_services = labels
.get("haze-services")?
.split(',')
.flat_map(|service| Service::from_type(&config.preset, service).into_iter().flatten())
.flat_map(|service| {
Service::from_type(&config.preset, service)
.into_iter()
.flatten()
})
.collect();
let mut service_ids: Vec<String> = services