Nguyen Huu Kien
Nguyen Huu Kien
Some time, i got this error when enqueue job. After few minus, everything will back to normal, job can enqueue agian, I don't now where to start to debug this...
hi My program ``` package main import ( "fmt" "net/http" "github.com/jinzhu/gorm" _ "github.com/jinzhu/gorm/dialects/mysql" _ "github.com/jinzhu/gorm/dialects/postgres" _ "github.com/mattn/go-sqlite3" "github.com/qor/admin" "github.com/qor/qor" "github.com/qor/i18n" "github.com/qor/i18n/backends/database" "github.com/qor/i18n/backends/yaml" ) type User struct { gorm.Model Name string...
Hi, My sample program: ``` package main import ( "fmt" "net/http" "github.com/jinzhu/gorm" _ "github.com/jinzhu/gorm/dialects/mysql" _ "github.com/mattn/go-sqlite3" "github.com/qor/admin" "github.com/qor/qor" ) // Create a GORM-backend model type User struct { gorm.Model Name...