Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
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
Eteri
slapos
Commits
087f3233
Commit
087f3233
authored
Nov 12, 2015
by
Julien Muchembled
Committed by
Kazuhiko Shiozaki
Dec 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
version up: Products.LongRequestLogger 2.0.0
parent
c1c88983
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
21 deletions
+19
-21
slapos/recipe/generic_zope_zeo_client/__init__.py
slapos/recipe/generic_zope_zeo_client/__init__.py
+0
-8
stack/erp5/buildout.cfg
stack/erp5/buildout.cfg
+3
-3
stack/erp5/instance-zope.cfg.in
stack/erp5/instance-zope.cfg.in
+8
-10
stack/erp5/zope.conf.in
stack/erp5/zope.conf.in
+8
-0
No files found.
slapos/recipe/generic_zope_zeo_client/__init__.py
View file @
087f3233
...
@@ -113,14 +113,6 @@ class Recipe(GenericBaseRecipe):
...
@@ -113,14 +113,6 @@ class Recipe(GenericBaseRecipe):
if
instance_home
:
if
instance_home
:
zope_environment
[
"INSTANCE_HOME"
]
=
instance_home
zope_environment
[
"INSTANCE_HOME"
]
=
instance_home
# longrequestlogger product which requires environment settings
longrequest_logger_file
=
self
.
options
.
get
(
'longrequest-logger-file'
,
None
)
if
longrequest_logger_file
:
# add needed zope configuration
zope_environment
[
'longrequestlogger_file'
]
=
longrequest_logger_file
zope_environment
[
'longrequestlogger_timeout'
]
=
self
.
options
.
get
(
'longrequest-logger-timeout'
,
None
)
zope_environment
[
'longrequestlogger_interval'
]
=
self
.
options
.
get
(
'longrequest-logger-interval'
,
None
)
# configure default Zope2 zcml
# configure default Zope2 zcml
open
(
self
.
options
[
'site-zcml'
],
'w'
).
write
(
open
(
self
.
getTemplateFilename
(
open
(
self
.
options
[
'site-zcml'
],
'w'
).
write
(
open
(
self
.
getTemplateFilename
(
'site.zcml'
)).
read
())
'site.zcml'
)).
read
())
...
...
stack/erp5/buildout.cfg
View file @
087f3233
...
@@ -168,7 +168,7 @@ md5sum = 1b515056c5892a86d4ece252ad114a97
...
@@ -168,7 +168,7 @@ md5sum = 1b515056c5892a86d4ece252ad114a97
[template-zope-conf]
[template-zope-conf]
<= download-base
<= download-base
filename = zope.conf.in
filename = zope.conf.in
md5sum =
0bf51218ecbf2bd319214192448a3ef7
md5sum =
c1cd0be406152c79e137dcf8c81f52f2
[template-runzope-userhosts-preloaded]
[template-runzope-userhosts-preloaded]
<= download-base
<= download-base
...
@@ -324,7 +324,7 @@ md5sum = 985c0010db6b553a89dbdb31353c56f5
...
@@ -324,7 +324,7 @@ md5sum = 985c0010db6b553a89dbdb31353c56f5
[template-zope]
[template-zope]
<= download-base
<= download-base
filename = instance-zope.cfg.in
filename = instance-zope.cfg.in
md5sum =
07d5d0df5d16b46602760a8673d4395b
md5sum =
bac5ff1ded5454749ec0e18d0ae1dae8
link-binary =
link-binary =
${aspell:location}/bin/aspell
${aspell:location}/bin/aspell
${dmtx-utils:location}/bin/dmtxwrite
${dmtx-utils:location}/bin/dmtxwrite
...
@@ -646,7 +646,7 @@ Products.CMFActionIcons = 2.1.3
...
@@ -646,7 +646,7 @@ Products.CMFActionIcons = 2.1.3
Products.DCWorkflowGraph = 0.4.1
Products.DCWorkflowGraph = 0.4.1
Products.ExternalEditor = 2.0.0
Products.ExternalEditor = 2.0.0
Products.GenericSetup = 1.8.0
Products.GenericSetup = 1.8.0
Products.LongRequestLogger =
1.1.post1
Products.LongRequestLogger =
2.0.0
Products.MimetypesRegistry = 2.0.8
Products.MimetypesRegistry = 2.0.8
Products.PluginRegistry = 1.3
Products.PluginRegistry = 1.3
Products.TIDStorage = 5.4.9
Products.TIDStorage = 5.4.9
...
...
stack/erp5/instance-zope.cfg.in
View file @
087f3233
...
@@ -292,6 +292,13 @@ node-id = {{ dumps(node_id_base ~ '-' ~ index) }}
...
@@ -292,6 +292,13 @@ node-id = {{ dumps(node_id_base ~ '-' ~ index) }}
{% endfor -%}
{% endfor -%}
import-list = {{ dumps(list(import_set)) }}
import-list = {{ dumps(list(import_set)) }}
zodb-dict = {{ dumps(zodb_dict) }}
zodb-dict = {{ dumps(zodb_dict) }}
{% if longrequest_logger_interval > 0 -%}
longrequest-logger-file = {{ longrequest_logger_base_path ~ name ~ ".log" }}
longrequest-logger-timeout = {{ longrequest_logger_timeout }}
longrequest-logger-interval = {{ longrequest_logger_interval }}
{% else -%}
longrequest-logger-file =
{% endif -%}
[{{ conf_name }}]
[{{ conf_name }}]
< = zope-conf-base
< = zope-conf-base
...
@@ -301,15 +308,6 @@ context =
...
@@ -301,15 +308,6 @@ context =
[{{ section(name) }}]
[{{ section(name) }}]
< = zope-base
< = zope-base
{% if longrequest_logger_interval < 0 -%}
longrequest-logger-file =
longrequest-logger-timeout =
longrequest-logger-interval =
{% else -%}
longrequest-logger-file = {{ longrequest_logger_base_path ~ name ~ ".log" }}
longrequest-logger-timeout = {{ longrequest_logger_timeout }}
longrequest-logger-interval = {{ longrequest_logger_interval }}
{% endif -%}
wrapper = ${directory:services}/{{ name }}
wrapper = ${directory:services}/{{ name }}
configuration-file = {{ '${' ~ conf_name ~ ':rendered}' }}
configuration-file = {{ '${' ~ conf_name ~ ':rendered}' }}
...
@@ -339,7 +337,7 @@ path = ${directory:promises}/{{ zope_tunnel_base_name }}
...
@@ -339,7 +337,7 @@ path = ${directory:promises}/{{ zope_tunnel_base_name }}
[{{ section('logrotate-entry-' ~ name) }}]
[{{ section('logrotate-entry-' ~ name) }}]
< = logrotate-entry-base
< = logrotate-entry-base
name = {{ name }}
name = {{ name }}
log = {{ '${' ~ conf_parameter_name ~ ':event-log}' }} {{ '${' ~ conf_parameter_name ~ ':z2-log}' }} {{ '${' ~ name ~ ':longrequest-logger-file}' }} {{ ' '.join(log_list) }}
log = {{ '${' ~ conf_parameter_name ~ ':event-log}' }} {{ '${' ~ conf_parameter_name ~ ':z2-log}' }} {{ '${' ~
conf_parameter_
name ~ ':longrequest-logger-file}' }} {{ ' '.join(log_list) }}
post = {{ bin_directory }}/slapos-kill --pidfile {{ '${' ~ conf_parameter_name ~ ':pid-file}' }} -s USR2
post = {{ bin_directory }}/slapos-kill --pidfile {{ '${' ~ conf_parameter_name ~ ':pid-file}' }} -s USR2
{% endmacro -%}
{% endmacro -%}
...
...
stack/erp5/zope.conf.in
View file @
087f3233
...
@@ -42,6 +42,14 @@ products {{ parameter_dict['instance-products'] }}
...
@@ -42,6 +42,14 @@ products {{ parameter_dict['instance-products'] }}
secret {{ parameter_dict['deadlock-debugger-password'] }}
secret {{ parameter_dict['deadlock-debugger-password'] }}
</product-config>
</product-config>
{% if 'longrequest-logger-interval' in parameter_dict -%}
<product-config LongRequestLogger>
logfile {{ parameter_dict['longrequest-logger-file'] }}
timeout {{ parameter_dict['longrequest-logger-timeout'] }}
interval {{ parameter_dict['longrequest-logger-interval'] }}
</product-config>
{% endif -%}
{% if 'tidstorage-ip' in parameter_dict -%}
{% if 'tidstorage-ip' in parameter_dict -%}
<product-config TIDStorage>
<product-config TIDStorage>
backend-ip {{ parameter_dict['tidstorage-ip'] }}
backend-ip {{ parameter_dict['tidstorage-ip'] }}
...
...
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