File tree Expand file tree Collapse file tree
src/FirebirdSql.Data.FirebirdClient/Services Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ public void Execute()
8181 startSpb . Append ( IscCodes . isc_spb_options , ( int ) Options ) ;
8282 startSpb . Append2 ( IscCodes . isc_spb_res_stat , Statistics . BuildConfiguration ( ) ) ;
8383 if ( ConnectionStringOptions . ParallelWorkers > 0 )
84- startSpb . Append ( IscCodes . isc_spb_bkp_parallel_workers , ConnectionStringOptions . ParallelWorkers ) ;
84+ startSpb . Append ( IscCodes . isc_spb_res_parallel_workers , ConnectionStringOptions . ParallelWorkers ) ;
8585 StartTask ( startSpb ) ;
8686 if ( Verbose )
8787 {
@@ -126,7 +126,7 @@ public async Task ExecuteAsync(CancellationToken cancellationToken = default)
126126 startSpb . Append ( IscCodes . isc_spb_options , ( int ) Options ) ;
127127 startSpb . Append2 ( IscCodes . isc_spb_res_stat , Statistics . BuildConfiguration ( ) ) ;
128128 if ( ConnectionStringOptions . ParallelWorkers > 0 )
129- startSpb . Append ( IscCodes . isc_spb_bkp_parallel_workers , ConnectionStringOptions . ParallelWorkers ) ;
129+ startSpb . Append ( IscCodes . isc_spb_res_parallel_workers , ConnectionStringOptions . ParallelWorkers ) ;
130130 await StartTaskAsync ( startSpb , cancellationToken ) . ConfigureAwait ( false ) ;
131131 if ( Verbose )
132132 {
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public void Execute()
8080 startSpb . Append2 ( IscCodes . isc_spb_res_skip_data , SkipData ) ;
8181 startSpb . Append ( IscCodes . isc_spb_options , ( int ) Options ) ;
8282 if ( ConnectionStringOptions . ParallelWorkers > 0 )
83- startSpb . Append ( IscCodes . isc_spb_bkp_parallel_workers , ConnectionStringOptions . ParallelWorkers ) ;
83+ startSpb . Append ( IscCodes . isc_spb_res_parallel_workers , ConnectionStringOptions . ParallelWorkers ) ;
8484 StartTask ( startSpb ) ;
8585 ReadInput ( ) ;
8686 }
@@ -120,7 +120,7 @@ public async Task ExecuteAsync(CancellationToken cancellationToken = default)
120120 startSpb . Append2 ( IscCodes . isc_spb_res_skip_data , SkipData ) ;
121121 startSpb . Append ( IscCodes . isc_spb_options , ( int ) Options ) ;
122122 if ( ConnectionStringOptions . ParallelWorkers > 0 )
123- startSpb . Append ( IscCodes . isc_spb_bkp_parallel_workers , ConnectionStringOptions . ParallelWorkers ) ;
123+ startSpb . Append ( IscCodes . isc_spb_res_parallel_workers , ConnectionStringOptions . ParallelWorkers ) ;
124124 await StartTaskAsync ( startSpb , cancellationToken ) . ConfigureAwait ( false ) ;
125125 await ReadInputAsync ( cancellationToken ) . ConfigureAwait ( false ) ;
126126 }
You can’t perform that action at this time.
0 commit comments