Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
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
Sebastian
erp5
Commits
91b98355
Commit
91b98355
authored
Dec 14, 2015
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
immediateReindexObject: use super user to reindex script
parent
3af46cdf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
product/ERP5Type/Base.py
product/ERP5Type/Base.py
+3
-2
No files found.
product/ERP5Type/Base.py
View file @
91b98355
...
...
@@ -85,7 +85,7 @@ from Products.ERP5Type.Accessor.Accessor import Accessor as Method
from
Products.ERP5Type.Accessor.TypeDefinition
import
asDate
from
Products.ERP5Type.Message
import
Message
from
Products.ERP5Type.ConsistencyMessage
import
ConsistencyMessage
from
Products.ERP5Type.UnrestrictedMethod
import
UnrestrictedMethod
from
Products.ERP5Type.UnrestrictedMethod
import
UnrestrictedMethod
,
super_user
from
zope.interface
import
classImplementsOnly
,
implementedBy
...
...
@@ -2758,7 +2758,8 @@ class Base( CopyContainer,
root_indexable
=
int
(
getattr
(
self
.
getPortalObject
(),
'isIndexable'
,
1
))
if
self
.
isIndexable
and
root_indexable
:
#LOG("immediateReindexObject",0,self.getRelativeUrl())
PortalContent
.
reindexObject
(
self
,
*
args
,
**
kw
)
with
super_user
():
PortalContent
.
reindexObject
(
self
,
*
args
,
**
kw
)
else
:
pass
#LOG("No reindex now",0,self.getRelativeUrl())
...
...
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