An error occurred fetching the project authors.
- 05 Mar, 2023 3 commits
-
-
Jérome Perrin authored
-
Jérome Perrin authored
haufe.requestmonitoring already supports WSGI and Python3 and seems used and maintainted.
-
Jérome Perrin authored
For ZEO4, this was implemented as a monkey patch in ERP5, but this is now supported in ZEO5, but not enabled by default. The setting is only avaiable through ZEO's own ZConfig, but not with ZODB's <zeoclient> so we also adjust the config to import ZEO and use ZEO's <clientstorage>.
-
- 09 Feb, 2022 1 commit
-
-
Arnaud Fontaine authored
-
- 11 Jan, 2022 2 commits
-
-
Jérome Perrin authored
With ERP5 commit nexedi/erp5!1529 timerserver is started from wsgi startup script and the config in zope.conf only applies to the medusa/ZServer mode.
-
Jérome Perrin authored
Since ERP5 commit 8f3b77517e (Force use of the new TimerServer, 2019-09-13) the timerserver egg is not longer used, so it's not needed to install and configure it.
-
- 09 Mar, 2021 1 commit
-
-
Vincent Pelletier authored
-
- 08 Mar, 2021 1 commit
-
-
Vincent Pelletier authored
Call them deadlines, as this is what they really are, but the "wrong" name stuck on ERP5 side (for now). Also, introduce a per-family-override mechanism, to avoid having per- option equivalents for such mechanism.
-
- 19 Jun, 2020 1 commit
-
-
Kazuhiko Shiozaki authored
stack/erp5: put a magic parameter to use the first entry of X-Forwarded-For as the source IP address.
-
- 04 Dec, 2019 1 commit
-
-
Julien Muchembled authored
-
- 24 Jun, 2019 1 commit
-
-
Bryton Lacquement authored
-
- 21 Feb, 2018 1 commit
-
-
Ivan Tyagov authored
Make it possible to specify the desired threshold before a requests gets saved to a temporary file instead of being read completely into memory. @nexedi, tests do pass (I squashed commits) so unless objections today I merge it tomorrow. https://nexedi.erp5.net/test_result_module/20180216-696E64EA /reviewed-on nexedi/slapos!290
-
- 03 Nov, 2017 1 commit
-
-
Julien Muchembled authored
See nexedi/erp5@5169f193
-
- 13 Sep, 2017 1 commit
-
-
Julien Muchembled authored
Since nexedi/erp5@6c6b77a0, this is now a safe operation, in that a mistake while moving databases won't result in a loss of the catalog if the zodb is empty. This new implementation relies on nexedi/erp5@6bb4c56e, which means that zopes decide on their own to create the site at startup if there's none, and the 'erp5-bootstrap' service is removed from the root partition. /reviewed-on nexedi/slapos!217
-
- 04 Jul, 2016 1 commit
-
-
Jérome Perrin authored
This patch change the log format from: ``` 2016-03-25 04:26:37,609 WARNING access 172.17.0.2 - Anonymous [25/Mar/2016:04:26:37 +0200] "GET / HTTP/1.0" 200 0 "" "" ------ 2016-03-25 04:26:37,613 WARNING access 172.17.0.2 - Anonymous [25/Mar/2016:04:26:37 +0200] "GET / HTTP/1.0" 200 1971 "" "" ------ 2016-03-25 04:26:37,619 WARNING access 172.17.0.2 - Anonymous [25/Mar/2016:04:26:37 +0200] "GET / HTTP/1.1" 200 1952 "" "" ------ 2016-03-25 04:26:40,619 WARNING access 172.17.0.2 - Anonymous [25/Mar/2016:04:26:40 +0200] "GET / HTTP/1.0" 200 1971 "" "" ------ 2016-03-25 04:26:43,622 WARNING access 172.17.0.2 - Anonymous [25/Mar/2016:04:26:43 +0200] "GET / HTTP/1.0" 200 1971 "" "" ``` to something more concise for the eye: ``` 2016-04-06 10:13:41,854 WARNING access 172.17.0.2 - Anonymous [06/Apr/2016:10:13:41 +0200] "GET / HTTP/1.0" 200 1971 "" "" 2016-04-06 10:13:44,861 WARNING access 172.17.0.2 - Anonymous [06/Apr/2016:10:13:44 +0200] "GET / HTTP/1.0" 200 1971 "" "" 2016-04-06 10:13:47,868 WARNING access 172.17.0.2 - Anonymous [06/Apr/2016:10:13:47 +0200] "GET / HTTP/1.0" 200 1971 "" "" 2016-04-06 10:13:50,875 WARNING access 172.17.0.2 - Anonymous [06/Apr/2016:10:13:50 +0200] "GET / HTTP/1.0" 200 1971 "" "" 2016-04-06 10:13:53,882 WARNING access 172.17.0.2 - Anonymous [06/Apr/2016:10:13:53 +0200] "GET / HTTP/1.0" 200 1971 "" "" 2016-04-06 10:13:56,890 WARNING access 172.17.0.2 - Anonymous [06/Apr/2016:10:13:56 +0200] "GET / HTTP/1.0" 200 1971 "" "" ``` by changing the log format from the default `------\n%(asctime)s %(levelname)s %(name)s %(message)s` ( defined [here](https://github.com/zopefoundation/ZConfig/blob/0d6a8a1/ZConfig/components/logger/handlers.xml#L38 )) to simply `%(asctime)s %(levelname)s %(name)s %(message)s` It is enabled for both event.log and Z2.log /cc @kazuhiko @vpelletier @tc /reviewed-on nexedi/slapos!67
-
- 07 Dec, 2015 1 commit
-
-
Julien Muchembled authored
-
- 09 Dec, 2014 1 commit
-
-
Julien Muchembled authored
All parameters about SLA, i.e. computer-guid & instance-guid, are removed in favor of a new "sla-dict" parameter, which is easier to implement and much more versatile. All changes in the request parameters are incompatible. The old ones are ignored without warning/error. For compatibility, the reference of ZEO partition is still "zodb". Default settings were also fine. Default name of mount-point and FileStorage file is reverted to 'root' instead of 'main'.
-
- 18 Nov, 2014 1 commit
-
-
Julien Muchembled authored
In order not to conflict with a future integration of NEO in ERP5: - the input schema has a new parameter for external storages. - zodb-software-type & zodb is used only for internal storages and only ZEO is supported. NEO logging is also enabled for clients.
-
- 28 Aug, 2014 1 commit
-
-
Vincent Pelletier authored
Also, do not tolerate missing instance-count internal zope partition parameter.
-
- 05 Apr, 2014 2 commits
-
-
Vincent Pelletier authored
Move haproxy httpchk configuration per-listen as zope's webdav returns 401 on (at least) GET / . TCP-level checks are still active, which should be sufficient. Also, change zope_family_address_list check to getitem as it's more natural than concatenating. Also, stop using apache.zope.backend recipe to add support for per-port scheme so automatic ERP5Site creation knows which URL is really HTTP. Also, stop using certificate_authority recipe and call openssl directly when generating self-signed cert for https/webdavs support. Also, rework balancer parameters a bit (still undocumented). Also, make instance-balancer always publish ipv6 value (empty when no ipv6 available), so instance-erp5 always succeeds.
-
Vincent Pelletier authored
-
- 03 Apr, 2014 2 commits
-
-
Vincent Pelletier authored
-
Vincent Pelletier authored
Escaping is right, but "raw" context entry type does not de-serialise, so deadlock debugger password was stored in an unintended format. Moving deadlock_debugger_password to a buildout section involves required magic. Move other parameters for consistency. Also, honour deadlock_path parameter, which was previously ignored.
-
- 07 Feb, 2014 1 commit
-
-
Vincent Pelletier authored
-
- 04 Feb, 2014 1 commit
-
-
Vincent Pelletier authored
-
- 16 Jul, 2013 1 commit
-
-
Vincent Pelletier authored
-
- 04 Feb, 2013 1 commit
-
-
Vincent Pelletier authored
This work has nothing to do in erp5-component branch, and is preventing it from being merged to erp5 banch more often. Conflicts because of non-reverted 6d1a9805 have been resolved to that its intent is preserved with non-cluster ERP5 SR. This reverts commit 77976a14. This reverts commit 7aa1d92c. This reverts commit 80062015. This reverts commit 36ed58f2. This reverts commit 1fe3f466. This reverts commit 7731726a. This reverts commit eb2016c4.
-
- 03 Oct, 2012 1 commit
-
-
Vincent Pelletier authored
-
- 20 Sep, 2012 1 commit
-
-
Vincent Pelletier authored
Also, make it optional.
-
- 24 Aug, 2012 1 commit
-
-
Thomas Lechauve authored
-
- 10 Jul, 2012 1 commit
-
-
Cédric de Saint Martin authored
All ERP5 profile is now in a single place. Moreover, use slapos.cfg stack.
-
- 26 Jun, 2012 1 commit
-
-
Vincent Pelletier authored
-
- 20 Jun, 2012 1 commit
-
-
Leonardo Rochael Almeida authored
All Products that are not packaged as python distributions need to be placed into a "Products" package since ZEO might need to be able to import them anyway.
-
- 11 Jun, 2012 1 commit
-
-
Vincent Pelletier authored
Also, as backward compatibility is not needed at this level, implement what is requested in BBB comment.
-
- 09 Jun, 2012 1 commit
-
-
Kazuhiko Shiozaki authored
-
- 07 Jun, 2012 1 commit
-
-
Vincent Pelletier authored
-