Merge pull request #426 from bluecmd/patch-4

Remove check for >0 upstreams
This commit is contained in:
Jehiah Czebotar 2017-08-28 20:45:26 -04:00 committed by GitHub
commit 11bdcc96c5
2 changed files with 0 additions and 4 deletions

View File

@ -121,9 +121,6 @@ func parseURL(to_parse string, urltype string, msgs []string) (*url.URL, []strin
func (o *Options) Validate() error {
msgs := make([]string, 0)
if len(o.Upstreams) < 1 {
msgs = append(msgs, "missing setting: upstream")
}
if o.CookieSecret == "" {
msgs = append(msgs, "missing setting: cookie-secret")
}

View File

@ -35,7 +35,6 @@ func TestNewOptions(t *testing.T) {
assert.NotEqual(t, nil, err)
expected := errorMsg([]string{
"missing setting: upstream",
"missing setting: cookie-secret",
"missing setting: client-id",
"missing setting: client-secret"})