Explorar el Código

Merge pull request #794 from simplyianm/qocql-typo

Fix typo qocql -> gocql
Chris Bannister hace 9 años
padre
commit
dd3f95dad7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      session.go

+ 1 - 1
session.go

@@ -1557,7 +1557,7 @@ var (
 	ErrTooManyStmts  = errors.New("too many statements")
 	ErrUseStmt       = errors.New("use statements aren't supported. Please see https://github.com/gocql/gocql for explaination.")
 	ErrSessionClosed = errors.New("session has been closed")
-	ErrNoConnections = errors.New("qocql: no hosts available in the pool")
+	ErrNoConnections = errors.New("gocql: no hosts available in the pool")
 	ErrNoKeyspace    = errors.New("no keyspace provided")
 	ErrNoMetadata    = errors.New("no metadata available")
 )