Initialize the julia runtime more than once within C++

You only need to initialize the runtime once - it’s supposed to be kept around between function invocations. I suggest you do that outside of your request calling logic, since calling jl_init more than once effectively means running julia multiple times at the same time (in the same process - which will break).

1 Like