This message was deleted.
# community-support
s
This message was deleted.
c
not having run it surmising the issue is relative pathing of resources. you want “/test.yaml” to match where that resource is located, where “test.yaml” will look relative to the class being loaded (“/com/myorg/test.yaml”)
e
^^ move the resource to match the package name, use an absolute path, or read the resource via the root classloader
s
thank you guys, i realized i was missing calling the root classloader in the java->kotlin conversion. i learned something new about the leading
/
today, too