Skip to content

Commit

Permalink
Release v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
heynemann committed Feb 23, 2017
1 parent d0a0405 commit 6d09e29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions api/dispatcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import (
"fmt"
"io"
"net/url"
"strconv"
"strings"
"time"

Expand Down Expand Up @@ -60,9 +61,9 @@ func (d *Dispatcher) Start() {
// location of redis instance
"server": fmt.Sprintf("%s:%d", redisHost, redisPort),
// instance of the database
"database": string(redisDatabase),
"database": strconv.Itoa(redisDatabase),
// number of connections to keep open with redis
"pool": string(redisPool),
"pool": strconv.Itoa(redisPool),
// unique process id
"process": uuid.NewV4().String(),
}
Expand Down
2 changes: 1 addition & 1 deletion api/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
package api

// VERSION identifies Khan's current version
var VERSION = "2.0.0"
var VERSION = "2.0.1"

0 comments on commit 6d09e29

Please sign in to comment.