lf-lang / lingua-franca

Intuitive concurrent programming in any language
https://www.lf-lang.org
Other
220 stars 57 forks source link

RTI does not terminate (not sure why) #2318

Closed lhstrh closed 2 weeks ago

lhstrh commented 2 weeks ago

To reproduce:

target C {
  logging: DEBUG,
  coordination: centralized,
  docker: {
    rti-image: "rti:local"
  }
}

reactor Hello {
  reaction(startup) {=
    printf("Hello World!\n");
  =}
}

federated reactor {
  a = new Hello()
  b = new Hello()
}
lhstrh commented 2 weeks ago

Not reproducible in master and due to a bug in my feature branch.