Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
facebook
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
mautrix
facebook
Commits
705dda8d
Commit
705dda8d
authored
4 years ago
by
Tulir Asokan
Browse files
Options
Downloads
Patches
Plain Diff
Only wait 3 seconds for disconnect when refreshing
parent
553705b1
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
mautrix_facebook/user.py
+8
-1
8 additions, 1 deletion
mautrix_facebook/user.py
with
8 additions
and
1 deletion
mautrix_facebook/user.py
+
8
−
1
View file @
705dda8d
...
@@ -257,18 +257,25 @@ class User(BaseUser):
...
@@ -257,18 +257,25 @@ class User(BaseUser):
event_id
=
None
event_id
=
None
self
.
_is_refreshing
=
True
self
.
_is_refreshing
=
True
if
self
.
listener
:
if
self
.
listener
:
self
.
log
.
debug
(
"
Disconnecting MQTT connection for session refresh...
"
)
if
self
.
temp_disconnect_notices
or
force_notice
:
if
self
.
temp_disconnect_notices
or
force_notice
:
event_id
=
await
self
.
send_bridge_notice
(
"
Disconnecting Messenger MQTT connection
"
event_id
=
await
self
.
send_bridge_notice
(
"
Disconnecting Messenger MQTT connection
"
"
for session refresh...
"
)
"
for session refresh...
"
)
self
.
listener
.
disconnect
()
self
.
listener
.
disconnect
()
if
self
.
listen_task
:
if
self
.
listen_task
:
await
self
.
listen_task
try
:
await
asyncio
.
wait_for
(
self
.
listen_task
,
timeout
=
3
)
except
asyncio
.
TimeoutError
:
self
.
log
.
debug
(
"
Waiting for MQTT connection timed out
"
)
else
:
self
.
log
.
debug
(
"
MQTT connection disconnected
"
)
self
.
listener
=
None
self
.
listener
=
None
if
self
.
client
:
if
self
.
client
:
self
.
client
.
sequence_id_callback
=
None
self
.
client
.
sequence_id_callback
=
None
if
self
.
temp_disconnect_notices
or
force_notice
:
if
self
.
temp_disconnect_notices
or
force_notice
:
event_id
=
await
self
.
send_bridge_notice
(
"
Refreshing session...
"
,
edit
=
event_id
)
event_id
=
await
self
.
send_bridge_notice
(
"
Refreshing session...
"
,
edit
=
event_id
)
try
:
try
:
self
.
log
.
debug
(
"
Re-loading session for refresh
"
)
ok
=
await
self
.
load_session
(
_override
=
True
,
_raise_errors
=
True
)
ok
=
await
self
.
load_session
(
_override
=
True
,
_raise_errors
=
True
)
except
fbchat
.
FacebookError
as
e
:
except
fbchat
.
FacebookError
as
e
:
await
self
.
send_bridge_notice
(
"
Failed to refresh Messenger session:
"
await
self
.
send_bridge_notice
(
"
Failed to refresh Messenger session:
"
...
...
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