Skip to content

Commit 00787f3

Browse files
committed
.
1 parent b5c0dbf commit 00787f3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

code/KustoCopyConsole/KustoCopyConsole.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
</ItemGroup>
2929

3030
<ItemGroup>
31-
<PackageReference Include="track-db" Version="0.4.8.25" />
31+
<PackageReference Include="track-db" Version="0.5.2.30" />
3232
<PackageReference Include="Azure.Storage.Files.DataLake" Version="12.23.0" />
3333
<PackageReference Include="CommandLineParser" Version="2.9.1" />
3434
<PackageReference Include="Microsoft.Azure.Kusto.Data" Version="14.0.1" />
3535
<PackageReference Include="Microsoft.Azure.Kusto.Ingest" Version="14.0.1" />
36-
<PackageReference Include="Polly" Version="8.6.3" />
36+
<PackageReference Include="Polly" Version="8.6.4" />
3737
<PackageReference Include="YamlDotNet" Version="16.3.0" />
3838
</ItemGroup>
3939
</Project>

code/KustoCopyConsole/Runner/MoveExtentRunner.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ private MovingBlocks GetExtentsToMove(IterationKey iterationKey)
7070
var ingestedExtentsByBlockId = RunnerParameters.Database.Extents.Query()
7171
.Where(pf => pf.Equal(e => e.BlockKey.IterationKey, iterationKey))
7272
.Where(pf => pf.In(e => e.BlockKey.BlockId, ingestedBlockIds))
73-
.AsEnumerable()
73+
.ToImmutableArray()
7474
.GroupBy(e => e.BlockKey.BlockId)
7575
.ToImmutableDictionary(g => g.Key, g => g.ToImmutableList());
7676
var totalExtentCount = 0;

0 commit comments

Comments
 (0)