Alan Jones
Alan Jones
In the version I'm testing I've replaced all the occurrences of time.Local with time.UTC in column.go. The github.com/lib/pq driver seems to have more knowledge of the database types timestamp vs....
I see a similar panic. Note that c.Len is no ware near -1 or MAXINT and my environment is 64 bit. ``` ALAN 259 len buffer 256 len 324 2018/11/02...
I have run into this as well. If the server cert is self-signed we may not be able to install the CA for it in the client host and would...
The mechanism I came up with for renewing sessions is to call AuthenticateSession() from my LoginRequired() function; i.e. no change needed to martini-contrib. However, in my testing I noticed that...
Note, the change in sessionauth requires the change in sessions. The security concern is that after the session expires exactly one API call is authenticated. When calls are coming all...
Unfortunately the automated checks are failing for something unrelated to my changes. I don't have the environment to reproduce and debug these failures. The code compiles just fine for me...
Created this wrapper module to work around this issue: ```go package copier import ( "reflect" "github.com/jinzhu/copier" ) func Copy(dst, src interface{}) { dv := reflect.ValueOf(dst) tv := reflect.TypeOf(dst) if dv.Kind()...
I question the results from Wercker. First it is using go-1.2 while most work that I've seen is at least up to go-1.6. I pulled in both sessionauth and graybird/redigo/redis...