Skip to content

Commit

Permalink
Release 0.55.2 (#441)
Browse files Browse the repository at this point in the history
* bumped version to 0.55.2

Signed-off-by: Brooks Townsend <[email protected]>

* added a little safety around our rpc call

Signed-off-by: Brooks Townsend <[email protected]>
  • Loading branch information
brooksmtownsend authored Aug 9, 2022
1 parent 436017b commit 685c8f2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
11 changes: 9 additions & 2 deletions host_core/lib/host_core/actors/actor_rpc_server.ex
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,15 @@ defmodule HostCore.Actors.ActorRpcServer do
actors ->
next_index = CallCounter.read_and_increment(pk)
{pid, _value} = Enum.at(actors, rem(next_index, length(actors)))
{:ok, resp} = GenServer.call(pid, {:handle_incoming_rpc, msg})
{:reply, resp}

case GenServer.call(pid, {:handle_incoming_rpc, msg}) do
{:ok, resp} ->
{:reply, resp}

_ ->
Logger.error("Failed to handle actor RPC call")
:ok
end
end
end

Expand Down
2 changes: 1 addition & 1 deletion host_core/mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule HostCore.MixProject do
use Mix.Project

@app_vsn "0.55.1"
@app_vsn "0.55.2"

def project do
[
Expand Down
4 changes: 2 additions & 2 deletions wasmcloud_host/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ icon: https://github.com/wasmCloud/wasmcloud.com-dev/raw/main/static/images/wasm

type: application

version: 0.6.0
version: 0.6.1

appVersion: "0.55.0"
appVersion: "0.55.2"
2 changes: 1 addition & 1 deletion wasmcloud_host/mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule WasmcloudHost.MixProject do
use Mix.Project

@app_vsn "0.55.1"
@app_vsn "0.55.2"

def project do
[
Expand Down

0 comments on commit 685c8f2

Please sign in to comment.