We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
find_bucket
Query builder for activity page builds query like:
events = flood(query_bucket(find_bucket("aw-watcher-window_rubi-mbp14"))); not_afk = flood(query_bucket(find_bucket("aw-watcher-afk_rubi-mbp14")));
Where find_bucket is unnecessary because there are already full name of bucket, which can be passed to query_bucket.
query_bucket
In the same time, it find_bucket usage leads to problems when bucket for hostname with some suffix also exists, like in ActivityWatch/activitywatch#998 (comment)
The text was updated successfully, but these errors were encountered:
I think find_bucket is still necessary. On my laptop it doesn't seem to have the hostname and the query looks like this
afk_events = query_bucket(find_bucket("aw-watcher-afk_")); window_events = query_bucket(find_bucket("aw-watcher-window_"));
I do not know how to fix the suffix issue yet. I will try looking into it.
Sorry, something went wrong.
No branches or pull requests
Query builder for activity page builds query like:
Where
find_bucket
is unnecessary because there are already full name of bucket, which can be passed toquery_bucket
.In the same time, it
find_bucket
usage leads to problems when bucket for hostname with some suffix also exists, like in ActivityWatch/activitywatch#998 (comment)The text was updated successfully, but these errors were encountered: