Romain Tartière

Results 241 comments of Romain Tartière

I needed to tune this too: ```diff diff --git a/service.py b/service.py index 1d9f004..ac9ea15 100644 --- a/service.py +++ b/service.py @@ -88,7 +88,7 @@ def Download(id,url,format,stack=False): zip = os.path.join( __temp__, "OpenSubtitles.zip") f...

@aanderse according to https://github.com/juokelis/service.subtitles.opensubtitles_by_opensubtitles/pull/1#issuecomment-752057129, the code is now hosted here: https://github.com/juokelis/service.subtitles.opensubtitles. In order to use it with a recent version of Kodi, I had to tweak it a bit, see...

Hi @clausecker! I have been really far away form nfc stuff for years, and that library really deserve some love! I invited you as a collaborator to the project, and...

Well, it also workaround the problem, but since the library should only be added when needed (a combination of CMake flags and operating system), it would require to duplicate the...

CI got fixed :100: I rebased on top of master.

> Why? Mainly consistency: if some code checks whether the dependency was found, I assumed it was expected to be an optional dependency. As a matter of fact, I was...

This error was related to riemann-ruby-client. The error on the backtrace indicate this line: https://github.com/riemann/riemann-ruby-client/blob/0.2.6/lib/riemann/client/tcp_socket.rb#L128 `Socket::TCP_KEEPCNT` was added in Ruby in this commit: https://github.com/ruby/ruby/commit/aa0ae0d3b6ab8d6c3143960bd0b3d154bd96d10e This commit was part of Ruby...

I feel concerned about this one: if a system has a non-zero error count, each time `riemann-net` start it will send a critical event. So a single error can end...

Hey! Using `--tls` without `--tls-ca-cert`, `--tls-cert` and `--tls-key`? I guess you can skip `--tls-ca-cert` if you decide to ignore the CA verification (`--no-tls-verify`), but key and cert MUST be provided...

> I want secure communication, not authentication Hum, is this supported by riemann? The server seems to assert presence of cert, key and ca-cert to start a TLS server: https://github.com/riemann/riemann/blob/2f06db732bdf65108572e0a37212719a915b6c2c/src/riemann/transport/tcp.clj#L281-L284...