Skip to content

Commit cfd8372

Browse files
Merge branch 'master' into attempt-instant-ddl
2 parents b06c1cd + fb82caf commit cfd8372

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [pull_request]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-20.04
99

1010
steps:
1111
- uses: actions/checkout@v2

.github/workflows/replica-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [pull_request]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-20.04
99
strategy:
1010
matrix:
1111
version: [mysql-5.7.25,mysql-8.0.16]

go/logic/migrator.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1059,6 +1059,7 @@ func (this *Migrator) printStatus(rule PrintStatusRule, writers ...io.Writer) {
10591059
)
10601060
w := io.MultiWriter(writers...)
10611061
fmt.Fprintln(w, status)
1062+
this.migrationContext.Log.Infof(status)
10621063

10631064
hooksStatusIntervalSec := this.migrationContext.HooksStatusIntervalSec
10641065
if hooksStatusIntervalSec > 0 && elapsedSeconds%hooksStatusIntervalSec == 0 {

0 commit comments

Comments
 (0)