Skip to content

Commit

Permalink
missed an encoding reference
Browse files Browse the repository at this point in the history
  • Loading branch information
bketelsen committed Oct 27, 2014
1 parent d369bc2 commit 0d6dc8c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import (
"io"
"io/ioutil"

"source.xordataexchange.com/exch/xor/Godeps/_workspace/src/github.com/xordataexchange/crypt/encoding/standard"

"github.com/xordataexchange/crypt/backend"
"github.com/xordataexchange/crypt/backend/consul"
"github.com/xordataexchange/crypt/backend/etcd"
Expand Down Expand Up @@ -132,8 +130,7 @@ func (c standardConfigManager) Watch(key string, stop chan bool) <-chan *Respons
resp <- &Response{nil, r.Error}
continue
}
value, err := standard.Decode(r.Value)
resp <- &Response{value, err}
resp <- &Response{r.Value, nil}
}
}
}()
Expand Down

0 comments on commit 0d6dc8c

Please # to comment.