infiniticio / infinitic

Infinitic is an open source orchestration framework for application teams to build durable and flexible backend processes.
https://infinitic.io
Other
342 stars 21 forks source link

meta property can not be used at workflow initialisation #239

Closed geomagilles closed 5 months ago

geomagilles commented 5 months ago

For example, defining the workflow property:

final HelloWorldService helloWorldService = newService(
                HelloWorldService.class,
                null,
                meta
        );

does not work as expected, because meta is always null.

(it works as expected if helloWorldService is defined inside a workflow method)