You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I dont know if this is a bug, or it is a design thing, so here is this issue I am facing.
I am declaring a StreamingProxy object and initializing. I am checking if the proxy is running or not depending at first it is something like this
if(streamer.isRunning()){
log.info("Is Running");
}else{
log.info("No esta corriendo");
}
I am getting
"Caused by: java.lang.NullPointerException: null
at org.red5.proxy.StreamingProxy.isRunning(StreamingProxy.java:241)",
and it makes sense because the state is never set even if it is initialized because there is no constructor or anything.
Shouldnt it starts as stopped?
The text was updated successfully, but these errors were encountered:
I dont know if this is a bug, or it is a design thing, so here is this issue I am facing.
I am declaring a StreamingProxy object and initializing. I am checking if the proxy is running or not depending at first it is something like this
I am getting
"Caused by: java.lang.NullPointerException: null
at org.red5.proxy.StreamingProxy.isRunning(StreamingProxy.java:241)",
and it makes sense because the state is never set even if it is initialized because there is no constructor or anything.
Shouldnt it starts as stopped?
The text was updated successfully, but these errors were encountered: