Skip to content

Commit 43c925e

Browse files
committed
Remove the need to check for H2Support == H2SupportDegree.Optional
1 parent b1ddc54 commit 43c925e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generator/ServiceClientGeneratorLib/ServiceModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ public List<Operation> Operations
453453
ExcludedOperations.Add(operation.Name);
454454
}
455455
// H2 bi-directional (bidi) event streams are not yet supported
456-
else if (H2Support == H2SupportDegree.Optional && operation.IsEventStreamBidi)
456+
else if (operation.IsEventStreamBidi)
457457
{
458458
ExcludedOperations.Add(operation.Name);
459459
}

0 commit comments

Comments
 (0)