this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(hetzner): log whole resp if cant apply firewall

dusk 3c5d3d95 49333ff9

+1 -1
+1 -1
firewall/provider/hetzner/app.nu
··· 28 28 # apply rules 29 29 let resp = open $rulesFile | post $"/firewalls/($firewallId)/actions/set_rules" 30 30 if $resp.status != 201 { 31 - log error $"could not apply firewall \(id ($firewallId)\): \(($resp.error.code)\) ($resp.error.message)" 31 + log error $"could not apply firewall \(id ($firewallId)\): \(($resp | to text)\)" 32 32 exit 2 33 33 } 34 34 log info $"applied firewall ($firewallId)"