Server.BackendCon renamed Server.BackendConn

This commit is contained in:
Jimmy Zelinskie
2014-04-20 02:25:21 -04:00
parent e80b17b2ad
commit f0bed27b6d
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ type Server struct {
conf *config.Config
listener *stoppableListener.StoppableListener
trackerPool tracker.Pool
backendCon backend.Conn
backendConn backend.Conn
startTime time.Time
@@ -55,7 +55,7 @@ func New(conf *config.Config) (*Server, error) {
s := &Server{
conf: conf,
trackerPool: trackerPool,
backendCon: backendConn,
backendConn: backendConn,
Server: http.Server{
Addr: conf.Addr,
ReadTimeout: conf.ReadTimeout.Duration,