feat: update docker alpine package mirror (#1924)

* feat: update docker alpine package mirror

* chore: format code
This commit is contained in:
Kevin Wan
2022-05-23 09:13:21 +08:00
committed by GitHub
parent f1fdd55b38
commit 72ebbb9774
3 changed files with 5 additions and 2 deletions

View File

@@ -97,7 +97,8 @@ func (cc CachedConn) Exec(exec ExecFn, keys ...string) (sql.Result, error) {
}
// ExecCtx runs given exec on given keys, and returns execution result.
func (cc CachedConn) ExecCtx(ctx context.Context, exec ExecCtxFn, keys ...string) (sql.Result, error) {
func (cc CachedConn) ExecCtx(ctx context.Context, exec ExecCtxFn, keys ...string) (
sql.Result, error) {
res, err := exec(ctx, cc.db)
if err != nil {
return nil, err