Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
98c4335e
Commit
98c4335e
authored
Dec 05, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
54cbcea9
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
9 deletions
+22
-9
doc/user/incident_management/index.md
doc/user/incident_management/index.md
+1
-1
doc/user/profile/active_sessions.md
doc/user/profile/active_sessions.md
+8
-5
qa/qa/resource/project.rb
qa/qa/resource/project.rb
+2
-2
qa/qa/resource/runner.rb
qa/qa/resource/runner.rb
+11
-1
No files found.
doc/user/incident_management/index.md
View file @
98c4335e
...
...
@@ -91,7 +91,7 @@ Please refer to a list of [available slash commands](../../integration/slash_com
## Zoom in issues
In order to communicate synchronously for incidents management, GitLab allows to
In order to communicate synchronously for incidents management, GitLab allows
you
to
associate a Zoom meeting with an issue. Once you start a Zoom call for a fire-fight,
you need a way to associate the conference call with an issue, so that your team
members can join swiftly without requesting a link.
...
...
doc/user/profile/active_sessions.md
View file @
98c4335e
...
...
@@ -2,10 +2,9 @@
type
:
howto
---
# Active
S
essions
# Active
s
essions
> - [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/17867)
> in GitLab 10.8.
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/17867) in GitLab 10.8.
GitLab lists all devices that have logged into your account. This allows you to
review the sessions, and revoke any you don't recognize.
...
...
@@ -18,8 +17,12 @@ review the sessions, and revoke any you don't recognize.
![
Active sessions list
](
img/active_sessions_list.png
)
CAUTION:
**Caution:**
It is currently possible to have 100 active sessions at once. If the number of active sessions exceed 100, the oldest ones will be deleted.
## Active sessions limit
> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/31611) in GitLab 12.6.
GitLab allows users to have up to 100 active sessions at once. If the number of active sessions
exceeds 100, the oldest ones are deleted.
<!-- ## Troubleshooting
...
...
qa/qa/resource/project.rb
View file @
98c4335e
...
...
@@ -115,8 +115,8 @@ module QA
post_body
end
def
runners
response
=
get
Runtime
::
API
::
Request
.
new
(
api_client
,
api_runners_path
).
url
def
runners
(
tag_list:
nil
)
response
=
get
Runtime
::
API
::
Request
.
new
(
api_client
,
"
#{
api_runners_path
}
?tag_list=
#{
tag_list
.
compact
.
join
(
','
)
}
"
).
url
parse_body
(
response
)
end
...
...
qa/qa/resource/runner.rb
View file @
98c4335e
...
...
@@ -41,7 +41,17 @@ module QA
end
def
remove_via_api!
@id
=
project
.
runners
.
find
{
|
runner
|
runner
[
:description
]
==
name
}[
:id
]
runners
=
project
.
runners
(
tag_list:
tags
)
unless
runners
&&
!
runners
.
empty?
raise
"Project
#{
project
.
path_with_namespace
}
has no runners with tags
#{
tags
}
."
end
this_runner
=
runners
.
find
{
|
runner
|
runner
[
:description
]
==
name
}
unless
this_runner
raise
"Project
#{
project
.
path_with_namespace
}
does not have a runner with a description matching
#{
name
}
and tags
#{
tags
}
. Runners available:
#{
runners
}
"
end
@id
=
this_runner
[
:id
]
super
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment