Daniel Caspi

Results 86 comments of Daniel Caspi

@Dcallies I've tested up to 25k tmk files, works great. There may be some better ways to optimize the parallelization, but it would be for smaller scale improvements at this...

Ran into a similar issue, and as a result, I am quite sure the library is *not* thread safe. These kinds of calls were causing race conditions for me (and...

I'm not sure that other plugins gracefully handle this situation. PRs are welcome to specifically handle network connection issues. For the moment, you can disable retries by setting maxAttempts to...

You can also try setting the timeout parameter to something shorter, or tuning other settings for the `requests` / `requestsretry` packages. But, I'm not sure if this will work for...

What you describe is a general problem with HTTP connections where the network request times out, and I'm not sure other plugins handle this situation gracefully either. For example, the...

> My thought at this time is see if anyone raises this as an issue, and recommend that they just switch to a fixed IP and Port. As most clients...

> Another approach I was thinking about was to change the function signature of registerpin and make it available as a function without the this scope. And have the exported...

hey! thanks for this PR. While I see the value of something like this, the proper implementation gets a bit complicated because: 1. Sending commands multiple times like that will...

You're using Bond? 😃 There is a much, much easier way. Simply change the `reps` property using the [Bond API](https://docs-local.appbond.com/#tag/Device-Command-Signal/paths/~1v2~1devices~1%7Bdevice_id%7D~1commands~1%7Bcommand_id%7D~1signal/patch). For instance: ```sh curl -iH "Bond-Token: xxxxxxxxxxxxxxxx" http://192.168.50.220/v2/devices/d90ffd28/commands/08eb5024/signal -X PATCH...

> Bond has an option to repeat signal for commands but we send actions from the plugin and there's no configuration to repeat signal for actions. I still tried setting...