File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.8.1 / 2022-10-21
2
+
3
+ * [ BUGFIX] Fix systemd activation flag when using a custom kingpin app. #118
4
+
1
5
## 0.8.0 / 2022-10-10
2
6
3
- * [ CHANGE] Change some structs suffix from ` Struct ` to ` Config ` #114
4
- * [ FEATURE] Add multiple listeners and systemd socket support #95
5
- * [ FEATURE] Allow TLS parameters to be set in code #110
7
+ * [ CHANGE] Change some structs suffix from ` Struct ` to ` Config ` . #114
8
+ * [ FEATURE] Add multiple listeners and systemd socket support. #95
9
+ * [ FEATURE] Allow TLS parameters to be set in code. #110
6
10
7
11
## 0.7.1 / 2021-12-02
8
12
Original file line number Diff line number Diff line change 1
- 0.8.0
1
+ 0.8.1
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import (
26
26
func AddFlags (a * kingpin.Application , defaultAddress string ) * web.FlagConfig {
27
27
systemdSocket := func () * bool { b := false ; return & b }() // Socket activation only available on Linux
28
28
if runtime .GOOS == "linux" {
29
- systemdSocket = kingpin .Flag (
29
+ systemdSocket = a .Flag (
30
30
"web.systemd-socket" ,
31
31
"Use systemd socket activation listeners instead of port listeners (Linux only)." ,
32
32
).Bool ()
You can’t perform that action at this time.
0 commit comments