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
81cda8a3
Commit
81cda8a3
authored
Sep 10, 2020
by
Dheeraj Joshi
Committed by
Kushal Pandya
Sep 10, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update tooltip and description for spider timeout
parent
823c2e14
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
13 additions
and
13 deletions
+13
-13
doc/api/graphql/reference/gitlab_schema.graphql
doc/api/graphql/reference/gitlab_schema.graphql
+3
-3
doc/api/graphql/reference/gitlab_schema.json
doc/api/graphql/reference/gitlab_schema.json
+3
-3
doc/api/graphql/reference/index.md
doc/api/graphql/reference/index.md
+1
-1
ee/app/assets/javascripts/dast_scanner_profiles/components/dast_scanner_profile_form.vue
...scanner_profiles/components/dast_scanner_profile_form.vue
+1
-1
ee/app/graphql/mutations/dast_scanner_profiles/create.rb
ee/app/graphql/mutations/dast_scanner_profiles/create.rb
+1
-1
ee/app/graphql/mutations/dast_scanner_profiles/update.rb
ee/app/graphql/mutations/dast_scanner_profiles/update.rb
+1
-1
ee/app/graphql/types/dast_scanner_profile_type.rb
ee/app/graphql/types/dast_scanner_profile_type.rb
+1
-1
locale/gitlab.pot
locale/gitlab.pot
+2
-2
No files found.
doc/api/graphql/reference/gitlab_schema.graphql
View file @
81cda8a3
...
...
@@ -3048,7 +3048,7 @@ type DastScannerProfile {
profileName
:
String
"""
The
maximum
number
of
second
s
allowed
for
the
spider
to
traverse
the
site
The
maximum
number
of
minute
s
allowed
for
the
spider
to
traverse
the
site
"""
spiderTimeout
:
Int
...
...
@@ -3098,7 +3098,7 @@ input DastScannerProfileCreateInput {
profileName
:
String
!
"""
The
maximum
number
of
second
s
allowed
for
the
spider
to
traverse
the
site
.
The
maximum
number
of
minute
s
allowed
for
the
spider
to
traverse
the
site
.
"""
spiderTimeout
:
Int
...
...
@@ -3213,7 +3213,7 @@ input DastScannerProfileUpdateInput {
profileName
:
String
!
"""
The
maximum
number
of
second
s
allowed
for
the
spider
to
traverse
the
site
.
The
maximum
number
of
minute
s
allowed
for
the
spider
to
traverse
the
site
.
"""
spiderTimeout
:
Int
!
...
...
doc/api/graphql/reference/gitlab_schema.json
View file @
81cda8a3
...
...
@@ -8289,7 +8289,7 @@
},
{
"name": "spiderTimeout",
"description": "The maximum number of
second
s allowed for the spider to traverse the site",
"description": "The maximum number of
minute
s allowed for the spider to traverse the site",
"args": [
],
...
...
@@ -8426,7 +8426,7 @@
},
{
"name": "spiderTimeout",
"description": "The maximum number of
second
s allowed for the spider to traverse the site.",
"description": "The maximum number of
minute
s allowed for the spider to traverse the site.",
"type": {
"kind": "SCALAR",
"name": "Int",
...
...
@@ -8747,7 +8747,7 @@
},
{
"name": "spiderTimeout",
"description": "The maximum number of
second
s allowed for the spider to traverse the site.",
"description": "The maximum number of
minute
s allowed for the spider to traverse the site.",
"type": {
"kind": "NON_NULL",
"name": null,
doc/api/graphql/reference/index.md
View file @
81cda8a3
...
...
@@ -519,7 +519,7 @@ Represents a DAST scanner profile.
|
`globalId`
| DastScannerProfileID! | ID of the DAST scanner profile |
|
`id`
**{warning-solid}**
| ID! |
**Deprecated:**
Use
`global_id`
. Deprecated in 13.4 |
|
`profileName`
| String | Name of the DAST scanner profile |
|
`spiderTimeout`
| Int | The maximum number of
second
s allowed for the spider to traverse the site |
|
`spiderTimeout`
| Int | The maximum number of
minute
s allowed for the spider to traverse the site |
|
`targetTimeout`
| Int | The maximum number of seconds allowed for the site under test to respond to a request |
## DastScannerProfileCreatePayload
...
...
ee/app/assets/javascripts/dast_scanner_profiles/components/dast_scanner_profile_form.vue
View file @
81cda8a3
...
...
@@ -169,7 +169,7 @@ export default {
modalOkTitle
:
__
(
'
Discard
'
),
modalCancelTitle
:
__
(
'
Cancel
'
),
spiderTimeoutTooltip
:
s__
(
'
DastProfiles|The maximum number of
second
s allowed for the spider to traverse the site.
'
,
'
DastProfiles|The maximum number of
minute
s allowed for the spider to traverse the site.
'
,
),
targetTimeoutTooltip
:
s__
(
'
DastProfiles|The maximum number of seconds allowed for the site under test to respond to a request.
'
,
...
...
ee/app/graphql/mutations/dast_scanner_profiles/create.rb
View file @
81cda8a3
...
...
@@ -26,7 +26,7 @@ module Mutations
argument
:spider_timeout
,
GraphQL
::
INT_TYPE
,
required:
false
,
description:
'The maximum number of
second
s allowed for the spider to traverse the site.'
description:
'The maximum number of
minute
s allowed for the spider to traverse the site.'
argument
:target_timeout
,
GraphQL
::
INT_TYPE
,
required:
false
,
...
...
ee/app/graphql/mutations/dast_scanner_profiles/update.rb
View file @
81cda8a3
...
...
@@ -25,7 +25,7 @@ module Mutations
argument
:spider_timeout
,
GraphQL
::
INT_TYPE
,
required:
true
,
description:
'The maximum number of
second
s allowed for the spider to traverse the site.'
description:
'The maximum number of
minute
s allowed for the spider to traverse the site.'
argument
:target_timeout
,
GraphQL
::
INT_TYPE
,
required:
true
,
...
...
ee/app/graphql/types/dast_scanner_profile_type.rb
View file @
81cda8a3
...
...
@@ -20,7 +20,7 @@ module Types
method: :name
field
:spider_timeout
,
GraphQL
::
INT_TYPE
,
null:
true
,
description:
'The maximum number of
second
s allowed for the spider to traverse the site'
description:
'The maximum number of
minute
s allowed for the spider to traverse the site'
field
:target_timeout
,
GraphQL
::
INT_TYPE
,
null:
true
,
description:
'The maximum number of seconds allowed for the site under test to respond to a request'
...
...
locale/gitlab.pot
View file @
81cda8a3
...
...
@@ -7918,10 +7918,10 @@ msgstr ""
msgid "DastProfiles|Text file validation"
msgstr ""
msgid "DastProfiles|The maximum number of
seconds allowed for the site under test to respond to a request
."
msgid "DastProfiles|The maximum number of
minutes allowed for the spider to traverse the site
."
msgstr ""
msgid "DastProfiles|The maximum number of seconds allowed for the s
pider to traverse the site
."
msgid "DastProfiles|The maximum number of seconds allowed for the s
ite under test to respond to a request
."
msgstr ""
msgid "DastProfiles|Validate"
...
...
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