1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-20 01:08:35 +00:00

Retry create issue to cope with duplicate keys (#7898)

* Retry create issue to cope with duplicate keys

* Use  .SetExpr().Where().Insert()
This commit is contained in:
guillep2k
2019-08-26 23:17:23 -03:00
committed by techknowlogick
parent 541fab196f
commit 5fe2ec264f
39 changed files with 1991 additions and 1404 deletions

4
vendor/xorm.io/core/ilogger.go generated vendored
View File

@@ -4,8 +4,10 @@
package core
// LogLevel defines a log level
type LogLevel int
// enumerate all LogLevels
const (
// !nashtsai! following level also match syslog.Priority value
LOG_DEBUG LogLevel = iota
@@ -16,7 +18,7 @@ const (
LOG_UNKNOWN
)
// logger interface
// ILogger is a logger interface
type ILogger interface {
Debug(v ...interface{})
Debugf(format string, v ...interface{})