diff --git a/VERSION b/VERSION index 7c2791e..7169d35 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.10 \ No newline at end of file +1.3.11 \ No newline at end of file diff --git a/cmd/edgeguard-scheduler/main.go b/cmd/edgeguard-scheduler/main.go index 28d9927..9a0fb16 100644 --- a/cmd/edgeguard-scheduler/main.go +++ b/cmd/edgeguard-scheduler/main.go @@ -622,7 +622,7 @@ func runWGClientTunnelCheck(ctx context.Context, pool *pgxpool.Pool, a *alerts.S // Alle aktiven Client-Interfaces aus DB laden. type wgIface struct{ name string } rows, err := pool.Query(ctx, - `SELECT name FROM wg_interfaces WHERE mode = 'client' AND active = true ORDER BY name`) + `SELECT name FROM wireguard_interfaces WHERE mode = 'client' AND active = true ORDER BY name`) if err != nil { return }