Daniel Caspi

Results 86 comments of Daniel Caspi

No, I had the same experience and am not familiar enough with the codebase to proceed any further. I'm wondering if the logic for this is already solved by some...

@dkoes sorry for the late reply! It has been all hands on deck dealing with various stages of the plague here 😅 > Have you verified that your weird molecules...

@arachnetech any chance you could look into this issue? There is a race condition being set up here. The onSet function is being called for characteristic_ColorTemperature_Internal before an actual value...

It's a race condition within this plugin that is more than 2 years old... I'm not quite sure how to solve it, and it may involve quite a bit of...

It might make sense to have a MSSQL specific change, at least for now. I think the cause may be here: `sa.Sequence('task_id_sequence'), primary_key=True, autoincrement=True)` Sequence is not supported in all...

@twacn you add it in the same place just before you initialize celery, e.g. ```py from celery.backends.database import models from celery import Celery from sqlalchemy import BigInteger # add monkey...

I think I may have fixed the problem, which stems from: - retry logic not functioning - timeout kicking in https://github.com/aarons22/homebridge-bond/pull/252 Curious to know if this is working for anyone...

thx for the quick response @jtsternberg ... hope we can still make use of the plugin despite the severe changes to the analytics! @chriscct7 would it be possible to export...

@jtsternberg @lkraav Found this in the code: https://github.com/jtsternberg/Google-Analytics-Top-Content-Widget/blob/644ee50e6f6a62ebc9f3c2d06ac922a98120fa2f/includes/class-ga-top-content.php#L682-L713 Seems there was an earlier version of Yoast, which is called if the Monster dependency is not met. Is this something we...

nice research @ddelange! is there a way to hide the warnings in the short term? e.g., something like this: ```py import warnings # Filter out specific deprecation warnings warnings.filterwarnings("ignore", message=".*Series.swapaxes...