Skip to content
Merged
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 @@ -423,7 +423,4 @@
<data name="DistributedNotSupportedOn32Bits" xml:space="preserve">
<value>Distributed transactions are currently unsupported in 32-bit processes.</value>
</data>
<data name="DistributedNotSupportedOnArm" xml:space="preserve">
<value>Distributed transactions are currently unsupported on ARM.</value>
</data>
</root>
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@ public void ConnectToProxy(
{
case Architecture.X86:
throw new PlatformNotSupportedException(SR.DistributedNotSupportedOn32Bits);

case Architecture.Armv6: // #74170
case Architecture.Arm64:
throw new PlatformNotSupportedException(SR.DistributedNotSupportedOnArm);
}

ConnectToProxyCore(nodeName, resourceManagerIdentifier, managedIdentifier, out nodeNameMatches, out whereabouts, out resourceManagerShim);
Expand Down
3 changes: 1 addition & 2 deletions src/libraries/System.Transactions.Local/tests/OleTxTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -464,8 +464,7 @@ public void GetDtcTransaction()
private static void Test(Action action)
{
// Temporarily skip on 32-bit where we have an issue.
// ARM64 issue: https://github.com/dotnet/runtime/issues/74170
if (!Environment.Is64BitProcess || PlatformDetection.IsArm64Process)
if (!Environment.Is64BitProcess)
{
return;
}
Expand Down