Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Tyagov
slapos.core
Commits
76149058
Commit
76149058
authored
Sep 04, 2019
by
Ivan Tyagov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increase the too low limit of what a hateos call should return. useful for testnode case.
Set proper limit.
parent
92a59dd9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
slapos/slap/hateoas.py
slapos/slap/hateoas.py
+7
-0
No files found.
slapos/slap/hateoas.py
View file @
76149058
...
@@ -275,6 +275,13 @@ class HateoasNavigator(object):
...
@@ -275,6 +275,13 @@ class HateoasNavigator(object):
}
}
def
jio_allDocs
(
self
,
query
):
def
jio_allDocs
(
self
,
query
):
# by default search_url is a Python script (ERP5Document_getHateoas)
# which enforces a too low limit of what is to be returned (default = 10)
# as testnode uses this to introspect created ERP5 instance which usually has
# at least 18 sub instances this limit is too low thus we need to explicitly
# increase it. 40 is the de-facto default ERP5 preference for number of objects
# which are usually to be rendered in alistbox 'view' mode
query
[
'limit'
]
=
40
search_url
=
self
.
_getSearchUrl
()
search_url
=
self
.
_getSearchUrl
()
getter_link
=
expand
(
search_url
,
query
)
getter_link
=
expand
(
search_url
,
query
)
...
...
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