Zhenxi Zhou
Zhenxi Zhou
Since Step 2 mentions setting a property like this ``` inference_address=http://0.0.0.0:8085 ... ``` wouldn't that mean `torchserve` would obey that and serve requests on port 8085? Also I just realized...
Hey there, looks like this has been out standing for quite a while. But I recently met the same issue - Adding `EventListener` caused the application to exit with SIGSEGV....
As a workaround, I tried implementing the constructor of my subclass of `AbstractEventListener` https://github.com/facebook/rocksdb/blob/9d37408f9af15c7a1ae42f9b94d06b27d98a011a/java/src/main/java/org/rocksdb/AbstractEventListener.java#L73-L89 only calling `super(ON_BACKGROUND_ERROR, ON_ERROR_RECOVERY_BEGIN, ON_ERROR_RECOVERY_COMPLETED)` for what I need. At least now I'm not seeing the...