File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ pub fn main() -> Result<()> {
129
129
let auto_verbose = !progress && !args. no_verbose ;
130
130
131
131
let should_interrupt = Arc :: new ( AtomicBool :: new ( false ) ) ;
132
- gix:: interrupt:: init_handler ( {
132
+ gix:: interrupt:: init_handler ( 1 , {
133
133
let should_interrupt = Arc :: clone ( & should_interrupt) ;
134
134
move || should_interrupt. store ( true , Ordering :: SeqCst )
135
135
} ) ?;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ pub fn main() -> Result<()> {
20
20
time:: util:: local_offset:: set_soundness ( time:: util:: local_offset:: Soundness :: Unsound ) ;
21
21
}
22
22
let should_interrupt = Arc :: new ( AtomicBool :: new ( false ) ) ;
23
- gix:: interrupt:: init_handler ( {
23
+ gix:: interrupt:: init_handler ( 1 , {
24
24
let should_interrupt = Arc :: clone ( & should_interrupt) ;
25
25
move || should_interrupt. store ( true , Ordering :: SeqCst )
26
26
} ) ?;
You can’t perform that action at this time.
0 commit comments