-
When sorting ticks, we can't ensure they are in the correct order for a day. Two climbs on the same day are not necessarily ordered in the ticked-order because we only record the date as a string and …
-
I think I have spotted an issue in ArtnetSender.h
What happens if millis(); overflow and now is 0 and this->last_send_times.find(dest) = 4,294,967,000 ?
```
void streamArtDmxTo(const String& ip, …
-
The error is related to the ambiguous millis() function due to the fact that there are different definitions of this function in the code. We can solve this problem by using a specific notation of the…
-
**Describe the problem you faced**
Hey team,
Here's a link to the thread on the Apache Hudi Slack channel where I posted this issue:
https://apache-hudi.slack.com/archives/C4D716NPQ/p17315321878…
-
Apparently, `millis()` will wrap around to 0 after roughly 49 days of execution time. In environments where the RNode may be left unattended, this could be an issue, and cause weird behaviour.
I ne…
-
Hi.
I try to compile your code with esphome 2023.7.1 and get errors like that:
`src/esphome/components/junctek_kgf/junctek_kgf.cpp: In member function 'void JuncTekKHF::handle_settings(const char…
-
millis() function is not implemented yet ? Or exist under another nameoffunction ?
-
If we want to enable a seamless transition for saved queries, we need to support mixed-type comparisons. Saved queries are likely to have clauses like `| WHERE ts > "2023-10-23T13:00:00Z"`, and the a…
-
# Repro steps
start redis server with `timeout 1`
```
use redis::aio::ConnectionManager;
use std::time::Duration;
async fn ping(con: &mut ConnectionManager) {
match redis::cmd("ping").qu…
-
In my dev environment (Macbook Pro 2020 i7) importing `atproto` takes over 3 seconds with Python 3.10, 3.11 and 3.12.
I couldn't find mentions of this in the issue tracker, so I assume this is not…