We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3f74c8 commit 9fa09d6Copy full SHA for 9fa09d6
handler/init.go
@@ -39,11 +39,13 @@ func init() {
39
log.Fatalln("Please ensure PLEX_BASEURL is a valid URL")
40
}
41
proxy = httputil.NewSingleHostReverseProxy(u)
42
+ proxy.FlushInterval = -1
43
44
plaxtBaseUrl := os.Getenv("PLAXT_BASEURL")
45
if plaxtBaseUrl != "" {
46
if u, err := url.Parse(plaxtBaseUrl); err == nil {
47
plaxtProxy = httputil.NewSingleHostReverseProxy(u)
48
+ plaxtProxy.FlushInterval = -1
49
50
51
0 commit comments