Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix/feat: use joins instead of n+1/opening multiple connections #1297

Merged
merged 8 commits into from
Feb 1, 2023
Prev Previous commit
Next Next commit
chore: only disable CSP headers in development
  • Loading branch information
markphelps committed Jan 31, 2023
commit 4d06f5e9110b0d99b6ec2aa1c67a06ebe3ca4991
2 changes: 1 addition & 1 deletion internal/info/flipt.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type Flipt struct {
}

func (f Flipt) IsDevelopment() bool {
return f.Version == "dev" && !f.IsRelease
return f.Version == "dev"
}

func (f Flipt) ServeHTTP(w http.ResponseWriter, r *http.Request) {
Expand Down