Skip to content

Commit

Permalink
Release 0.11.5
Browse files Browse the repository at this point in the history
  • Loading branch information
blumu committed Aug 17, 2019
1 parent 9e21e47 commit 19534b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FSharpLu.Azure/AzureVM.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,7 @@ let getVirtualMachineRemoteInfo(context:InfrastructureContext) vmName vmPort =
async {
let! vmRequest = context.compute.VirtualMachines.GetWithHttpMessagesAsync(context.groupName, vmName).AsAsync
let vm = vmRequest.Body
assertStatusCodeIs context.tags System.Net.HttpStatusCode.OK vmRequest.Response.StatusCode "Could not retrieve RDP connection file."
assertStatusCodeIs context.tags System.Net.HttpStatusCode.OK vmRequest.Response.StatusCode "Could not retrieve VM resource information."

let networkInterfaceGroup, networkInterfaceName =
match vm.NetworkProfile.NetworkInterfaces.[0].Id.Split([|'/'|]) |> Seq.toList |> List.rev with
Expand Down Expand Up @@ -1247,8 +1247,8 @@ let getVirtualMachineRemoteInfo(context:InfrastructureContext) vmName vmPort =
let rule =
lb.Body.InboundNatRules
|> Seq.tryFind (fun r -> r.BackendPort.HasValue && r.BackendPort.Value = vmPort
&& r.BackendIPConfiguration.Id = vmIpConfigId )
|> Option.orDo (fun () -> TraceTags.failwith "Cannot find RDP rule on load balancer" context.tags)
&& r.BackendIPConfiguration.Id = vmIpConfigId)
|> Option.orDo (fun () -> TraceTags.failwith "Cannot find load balancer rule with requested backend port number" context.tags)

// Get public IP address of the load balancer
let publicIpResourceGroup, publicIpName =
Expand Down
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- 0.11.5
- State machine agents can call each others via `Call` instruction and consume result returned by the callee

- 0.11.4
- Build with dotnet SDK 2.2.401 and F# 4.6
- Minor changes in state machine OutcomeLogger<_,_>
Expand Down

0 comments on commit 19534b2

Please sign in to comment.