-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[neeo] Fix Servlet exceptions due to non-unique names #14554
Conversation
It seems that Pax Web nowadays checks that the Servlet names are unique. Fixes openhab#14545 Signed-off-by: Wouter Born <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the fix!
It seems that Pax Web nowadays checks that the Servlet names are unique. Fixes openhab#14545 Signed-off-by: Wouter Born <[email protected]>
It seems that Pax Web nowadays checks that the Servlet names are unique. Fixes openhab#14545 Signed-off-by: Wouter Born <[email protected]>
This pull request has been mentioned on openHAB Community. There might be relevant details there: https://community.openhab.org/t/ipcamera-new-ip-camera-binding/42771/2864 |
[IP camera] on OH4 has the same servlet issue that was fixed by PR openhab#14554. This PR uses that PR as a template to fix the issue in the IPcamera binding. (That issue being that only one camera was able to stream.) This was tested locally on OH4M2 and it works. Signed-off-by: Bob Eckhoff <[email protected]>
[IP camera] on OH4 has the same servlet issue that was fixed by PR openhab#14554. This PR uses that PR as a template to fix the issue in the IPcamera binding. (That issue being that only one camera was able to stream.) This was tested locally on OH4M2 and it works. Signed-off-by: Bob Eckhoff <[email protected]> Signed-off-by: Bob Eckhoff <[email protected]>
[IP camera] on OH4 has the same servlet issue that was fixed by PR openhab#14554. This PR uses that PR as a template to fix the issue in the IPcamera binding. (That issue being that only one camera was able to stream.) This was tested locally on OH4M2 and it works. Signed-off-by: Bob Eckhoff <[email protected]> Signed-off-by: Bob Eckhoff <[email protected]>
* [ipcamera] Fix servlet exceptions due to non unique names [IP camera] on OH4 has the same servlet issue that was fixed by PR #14554. This PR uses that PR as a template to fix the issue in the IPcamera binding. (That issue being that only one camera was able to stream.) This was tested locally on OH4M2 and it works. Signed-off-by: Bob Eckhoff <[email protected]>
) * [ipcamera] Fix servlet exceptions due to non unique names [IP camera] on OH4 has the same servlet issue that was fixed by PR openhab#14554. This PR uses that PR as a template to fix the issue in the IPcamera binding. (That issue being that only one camera was able to stream.) This was tested locally on OH4M2 and it works. Signed-off-by: Bob Eckhoff <[email protected]> Signed-off-by: Matt Myers <[email protected]>
This pull request has been mentioned on openHAB Community. There might be relevant details there: https://community.openhab.org/t/sony-devices-binding-for-oh3/124388/143 |
This pull request has been mentioned on openHAB Community. There might be relevant details there: |
It seems that Pax Web nowadays checks that the Servlet names are unique.
See: ServletModel.addServletModel
Fixes #14545