Skip to content

Commit

Permalink
update AUTHORS and remove const
Browse files Browse the repository at this point in the history
  • Loading branch information
juliendsv committed Aug 20, 2014
1 parent 838e2ab commit 14c1e97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ Fred McCann <[email protected]>
Dan Simmons <[email protected]>
Muir Manders <[email protected]>
Sankar P <[email protected]>
Julien Da Silva <[email protected]>
6 changes: 1 addition & 5 deletions cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ import (
"github.com/golang/groupcache/lru"
)

const (
defaultPort = 9042
)

//Package global reference to Prepared Statements LRU
var stmtsLRU preparedLRU

Expand Down Expand Up @@ -75,7 +71,7 @@ func NewCluster(hosts ...string) *ClusterConfig {
CQLVersion: "3.0.0",
ProtoVersion: 2,
Timeout: 600 * time.Millisecond,
Port: defaultPort,
Port: 9042,
NumConns: 2,
NumStreams: 128,
Consistency: Quorum,
Expand Down

0 comments on commit 14c1e97

Please sign in to comment.