Skip to content
Snippets Groups Projects
Commit a50dc191 authored by erwan's avatar erwan
Browse files

Fix: do use the empty string as the action name when no action is registred

parent 01a43254
No related branches found
No related tags found
No related merge requests found
(* Time-stamp: <modified the 13/03/2019 (at 10:01) by Erwan Jahier> *)
(* Time-stamp: <modified the 20/03/2019 (at 13:07) by Erwan Jahier> *)
type t = {
pid : string;
......@@ -44,7 +44,7 @@ let (make: bool -> Topology.node -> t) =
with _ ->
if custom_mode then
failwith "Registering actions is mandatory in algorithms when using custom demon!"
else [""]
else ["a"]
in
let process = {
pid = pid;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment