Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ResourceIdentifier dataFactoryResourceId =
DataFactoryResource.CreateResourceIdentifier("<subscription-id>", "<resource-group>", "<factory-name>");

await using var session =
await TemporaryDataFlowDebugSession.StartDebugSessionAsync(dataFactoryResourceId, logger);
await TemporaryDataFlowDebugSession.StartDebugSessionAsync(dataFactoryResourceId, logger, cancellationToken);
```

> ⚡ Uses by default the `DefaultAzureCredential` but other types of authentication mechanism are supported with overloads that take in the `DataFactoryResource` directly:
Expand Down Expand Up @@ -193,7 +193,7 @@ using Arcus.Testing;
await using TemporaryDataFlowDebugSession session = ...

DataFlowRunResult result =
await session.RunDataFlowAsync("<dataflow-name>", "<target-sink-name>");
await session.RunDataFlowAsync("<dataflow-name>", "<target-sink-name>", cancellationToken);

// The run status of data preview, statistics or expression preview.
string status = result.Status;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
<AnalysisMode>All</AnalysisMode>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\ObsoleteDefaults.cs" Link="ObsoleteDefaults.cs" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\LICENSE" Pack="true" PackagePath="\" />
Expand All @@ -31,7 +35,7 @@
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="[1.*,2.0.0)" />
<PackageReference Include="Azure.ResourceManager.DataFactory" Version="[1.*,2.0.0)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="[8.*,11.0.0)" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="[10.*,11.0.0)" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading
Loading