Skip to content

Commit bb3094f

Browse files
committed
fix
1 parent ab457d0 commit bb3094f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cli/src/command/up.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ impl Up {
9494
let checksum = Sha384::digest(body.as_bytes()).to_vec();
9595

9696
let start = Instant::now();
97-
runtime.block_on(conn.execute(&*body))
97+
runtime
98+
.block_on(conn.execute(&*body))
9899
.map_err(|e| anyhow!("Error while running migration {}: {}", &migration.name, e))?;
99100
let elapsed = start.elapsed();
100101

0 commit comments

Comments
 (0)