-
-
Notifications
You must be signed in to change notification settings - Fork 177
Closed
Labels
Description
I've been working with the gorethink package locally for awhile and when I went to install the project on my colleagues machine they pulled gorethink for the first time the code then stopped working.
I noticed the godocs had been updated so updated my local version and updated the code but found that I started getting the "no connections were made when creating the session"
The code am running is
address := fmt.Sprintf("%s:%d", c.String("rethink_host"), c.Int("rethink_port"))
r.SetVerbose(true)
session, err := r.Connect(r.ConnectOpts{
Address: address,
})
if err != nil {
log.Fatalln(err.Error())
}
This is the output I get in terminal
FATA[0003] no connections were made when creating the session