Skip to content

Commit

Permalink
fix(auth proxy): Fix for server side rendering of panel when using au…
Browse files Browse the repository at this point in the history
…th proxy, fixes grafana#2568
  • Loading branch information
torkelo authored and Don Hsieh committed Nov 12, 2015
1 parent 3509045 commit 9d8ec58
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .bra.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ watch_dirs = [
"$WORKDIR/public/views",
"$WORKDIR/conf",
]
<<<<<<< 350904500dc0256857920fc88984a84ee9ac44d8
watch_exts = [".go", ".ini", ".toml", ".html"]
=======
watch_exts = [".go", ".ini", ".toml"]
>>>>>>> fix(auth proxy): Fix for server side rendering of panel when using auth proxy, fixes #2568
build_delay = 1500
cmds = [
["go", "build", "-o", "./bin/grafana-server"],
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ Grunt & Watch tasks:
# 2.1.2 (2015-08-20)

**Fixes**
<<<<<<< 350904500dc0256857920fc88984a84ee9ac44d8
<<<<<<< 65d0d096a2b4b75b95d6288ba17fb3951389520f
- [Issue #2558](https://github.com/grafana/grafana/issues/2558). DragDrop: Fix for broken drag drop behavior
- [Issue #2534](https://github.com/grafana/grafana/issues/2534). Templating: fix for setting template variable value via url and having repeated panels or rows
Expand All @@ -92,6 +93,9 @@ panels or rows, fixes #2534
- [Issue #2534](https://github.com/grafana/grafana/issues/2534). Templating: fix for setting template variable value via url and having repeated panels or rows
>>>>>>> fix(dragdrop): Fix for broken drag drop behavior, fixes #2558
=======
=======
- [Issue #2568](https://github.com/grafana/grafana/issues/2568). AuthProxy: Fix for server side rendering of panel when using auth proxy
>>>>>>> fix(auth proxy): Fix for server side rendering of panel when using auth proxy, fixes #2568
- [Issue #2490](https://github.com/grafana/grafana/issues/2490). Graphite: Dashboard import was broken in 2.1 and 2.1.1, working now
- [Issue #2565](https://github.com/grafana/grafana/issues/2565). TimePicker: Fix for when you applied custom time range it did not refreh dashboard
fixes #2565
Expand Down
6 changes: 6 additions & 0 deletions pkg/middleware/auth_proxy.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
package middleware

import (
<<<<<<< 350904500dc0256857920fc88984a84ee9ac44d8
<<<<<<< 2a5dc9d78a8348937a25624bf121704836c7f07c
=======
>>>>>>> fix(auth proxy): Fix for server side rendering of panel when using auth proxy, fixes #2568
"github.com/grafana/grafana/pkg/bus"
"github.com/grafana/grafana/pkg/log"
m "github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/setting"
<<<<<<< 350904500dc0256857920fc88984a84ee9ac44d8
=======
"github.com/Cepave/grafana/pkg/bus"
m "github.com/Cepave/grafana/pkg/models"
"github.com/Cepave/grafana/pkg/setting"
>>>>>>> Replace the import path with github.com/Cepave/grafana.
=======
>>>>>>> fix(auth proxy): Fix for server side rendering of panel when using auth proxy, fixes #2568
)

func initContextWithAuthProxy(ctx *Context) bool {
Expand Down

0 comments on commit 9d8ec58

Please sign in to comment.