forked from apache/cassandra-gocql-driver
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
alter NewTraceWriter to return a pointer - go vet was complaining abo…
…ut passing traceWriter's mutex by value
- Loading branch information
Fred McCann
committed
Aug 4, 2014
1 parent
6f558cc
commit 8a78b62
Showing
5 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,5 @@ Miguel Serrano <[email protected]> | |
Stefan Radomski <[email protected]> | ||
Josh Wright <[email protected]> | ||
Jacob Rhoden <[email protected]> | ||
Ben Frye <[email protected]> | ||
Ben Frye <[email protected]> | ||
Fred McCann <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
// Copyright (c) 2012 The gocql Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
//This file will be the future home for more policies | ||
package gocql | ||
|
||
// RetryPolicy represents the retry behavour for a query. | ||
type RetryPolicy struct { | ||
NumRetries int //Number of times to retry a query | ||
} | ||
// Copyright (c) 2012 The gocql Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
//This file will be the future home for more policies | ||
package gocql | ||
|
||
// RetryPolicy represents the retry behavour for a query. | ||
type RetryPolicy struct { | ||
NumRetries int //Number of times to retry a query | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters