Skip to content

Commit

Permalink
stashing stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb committed Jan 12, 2016
1 parent d4a91b0 commit e6abd6e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/Akka.Remote.TestKit/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ public void InitFSM()
{
ThrottleMode mode;
if (throttleMsg.RateMBit < 0.0f) mode = Unthrottled.Instance;
else if (throttleMsg.RateMBit < 0.0f) mode = Blackhole.Instance;
else if (throttleMsg.RateMBit == 0.0f) mode = Blackhole.Instance;
else mode = new TokenBucket(1000, throttleMsg.RateMBit*125000, 0, 0);

var cmdTask =
Expand Down
2 changes: 2 additions & 0 deletions src/core/Akka.Tests/Actor/FSMTransitionSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ public MyFSM(IActorRef target)
Initialize();
}



public IActorRef Target { get; private set; }

protected override void PreRestart(Exception reason, object message)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"akka.tcp://ClusterSystem@127.0.0.1:2551",
"akka.tcp://ClusterSystem@127.0.0.1:2552"]
auto-down-unreachable-after = 10s
#auto-down-unreachable-after = 10s
}
}
]]>
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Cluster/Samples.Cluster.Simple/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"akka.tcp://ClusterSystem@127.0.0.1:2551",
"akka.tcp://ClusterSystem@127.0.0.1:2552"]
auto-down-unreachable-after = 30s
#auto-down-unreachable-after = 30s
}
}
]]>
Expand Down

0 comments on commit e6abd6e

Please sign in to comment.