Marc Seeger
Marc Seeger
One thing that would be a nice variant/option of this that I've seen on synology devices: Do a timelapse at 10x/20/50x speed until there's an event and then just splice...
Same issue here (also a Nortek HUSBZB-1) I just wanted to link to https://xcp-ng.org/forum/topic/266/usb-passthrough-test-reports-in-7-5rc1/57?lang=en-GB&page=3 which might be interesting Seems like some success via "xe vm-param-set uuid=**** platform:device-model=qemu-upstream-compat"
Any news on that one? Otherwise oneswarm is somewhat unusable on headless mode :(
Just ran into the same problem
I can confirm that just reloading the integration usually fixes it for me. So it seems like there's some missing retry/reconnect?
Example: ``` ruby require 'rubygems' require 'http_client' user_agent = 'testing' client_opts = { :connection_timeout => 10000, :timeout_in_seconds => 30, :user_agent => user_agent, :handle_redirects => true, :max_redirects => 10, :use_ssl =>...
This can be somewhat solved by doing this: ``` java // Example java.security.Provider implementation // that trusts ALL SSL certificates // Regardless of whether they are valid or not //...
Ok, next approach, less java :) ``` ruby class TrustStrategy def isTrusted(chain, auth_type) return true; end end [...] http_client = HTTP::Client.new(@client_opts) begin get_req = HTTP::Get.new(url_to_crawl.to_s) result = http_client.execute(get_req) rescue javax.net.ssl.SSLPeerUnverifiedException...
(btw: this is on commit a18b4099fbd458111983200e098b6f0c8efed4bc , so the current version)