Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
conduwuit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
🥺
conduwuit
Commits
e90cd48f
Commit
e90cd48f
authored
1 year ago
by
🥺
Committed by
🥺
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
remove unnecessary pubs
Signed-off-by:
strawberry
<
strawberry@puppygock.gay
>
parent
139b0fdc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/database/mod.rs
+3
-3
3 additions, 3 deletions
src/database/mod.rs
with
3 additions
and
3 deletions
src/database/mod.rs
+
3
−
3
View file @
e90cd48f
...
...
@@ -1012,7 +1012,7 @@ pub fn flush(&self) -> Result<()> {
}
#[tracing::instrument]
pub
fn
start_check_for_updates_task
()
{
fn
start_check_for_updates_task
()
{
tokio
::
spawn
(
async
move
{
let
timer_interval
=
Duration
::
from_secs
(
60
*
60
);
let
mut
i
=
interval
(
timer_interval
);
...
...
@@ -1060,7 +1060,7 @@ struct CheckForUpdatesResponse {
}
#[tracing::instrument]
pub
async
fn
start_cleanup_task
()
{
async
fn
start_cleanup_task
()
{
#[cfg(unix)]
use
tokio
::
signal
::
unix
::{
signal
,
SignalKind
};
use
tokio
::
time
::
Instant
;
...
...
@@ -1111,7 +1111,7 @@ fn perform_cleanup() {
});
}
pub
async
fn
start_presence_handler
(
presence_timer_receiver
:
mpsc
::
UnboundedReceiver
<
(
OwnedUserId
,
Duration
)
>
)
{
async
fn
start_presence_handler
(
presence_timer_receiver
:
mpsc
::
UnboundedReceiver
<
(
OwnedUserId
,
Duration
)
>
)
{
tokio
::
spawn
(
async
move
{
match
presence_handler
(
presence_timer_receiver
)
.await
{
Ok
(())
=>
warn!
(
"Presence maintenance task finished"
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment