Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
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
Model registry
Operate
Environments
Monitor
Incidents
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
eta
gajim
Commits
23c99ac9
Commit
23c99ac9
authored
16 years ago
by
js
Browse files
Options
Downloads
Patches
Plain Diff
Use more sane timeout values. 2 min should be ok.
parent
8d99b680
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/common/config.py
+2
-2
2 additions, 2 deletions
src/common/config.py
with
2 additions
and
2 deletions
src/common/config.py
+
2
−
2
View file @
23c99ac9
...
...
@@ -312,8 +312,8 @@ class Config:
'
attached_gpg_keys
'
:
[
opt_str
,
''
],
'
keep_alives_enabled
'
:
[
opt_bool
,
True
],
# send keepalive every N seconds of inactivity
'
keep_alive_every_foo_secs
'
:
[
opt_int
,
55
],
'
time_for_keep_alive_answer
'
:
[
opt_int
,
2
0
,
_
(
'
How many seconds to wait for the answer of keepalive packet before we try to reconnect.
'
)
],
'
keep_alive_every_foo_secs
'
:
[
opt_int
,
120
],
'
time_for_keep_alive_answer
'
:
[
opt_int
,
6
0
,
_
(
'
How many seconds to wait for the answer of keepalive packet before we try to reconnect.
'
)
],
# try for 2 minutes before giving up (aka. timeout after those seconds)
'
try_connecting_for_foo_secs
'
:
[
opt_int
,
60
],
'
http_auth
'
:
[
opt_str
,
'
ask
'
],
# yes, no, ask
...
...
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