Skip to content

Commit

Permalink
missed endpoint mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
benPearce1 committed May 21, 2018
1 parent f57d35d commit b7168fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/Octopus.Client/Serialization/EndpointConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ public class EndpointConverter : InheritedClassConverter<EndpointResource, Commu
{CommunicationStyle.OfflineDrop, typeof (OfflineDropEndpointResource)},
{CommunicationStyle.AzureCloudService, typeof (CloudServiceEndpointResource)},
{CommunicationStyle.AzureWebApp, typeof (AzureWebAppEndpointResource)},
{CommunicationStyle.None, typeof (CloudRegionEndpointResource)}
{CommunicationStyle.None, typeof (CloudRegionEndpointResource)},
{CommunicationStyle.AzureServiceFabricCluster, typeof(ServiceFabricEndpointResource)}
};

protected override IDictionary<CommunicationStyle, Type> DerivedTypeMappings => EndpointTypes;
Expand Down

0 comments on commit b7168fe

Please sign in to comment.