File tree Expand file tree Collapse file tree 3 files changed +8
-18
lines changed Expand file tree Collapse file tree 3 files changed +8
-18
lines changed Original file line number Diff line number Diff line change 1
1
[buildout]
2
2
parts +=
3
3
instance
4
- instance-cron
5
4
parts -=
6
5
instance2
7
6
instance3
@@ -23,6 +22,12 @@ zope-conf-additional =
23
22
bind 0.0.0.0:${port:instance1-monitor}
24
23
</product-config>
25
24
${zope-conf:additional}
25
+ <clock-server>
26
+ method /${port:plone-path}/@@cron-tick
27
+ period 3600
28
+ user admin
29
+ password ${port:admin-password}
30
+ </clock-server>
26
31
${zope-conf:zamqp}
27
32
environment-vars -=
28
33
OO_PORT ${port:oo-port}
@@ -38,19 +43,6 @@ blob-storage = /data/blobstorage
38
43
environment-vars =
39
44
ZC_ASYNC_UUID /data/async-uuid.txt
40
45
41
- [instance-cron]
42
- <= instance
43
- http-address = 8087
44
- zope-conf-additional =
45
- ${zope-conf:additional}
46
- <clock-server>
47
- method /${port:plone-path}/@@cron-tick
48
- period 3600
49
- user admin
50
- password ${port:admin-password}
51
- </clock-server>
52
- ${zope-conf:zamqp}
53
-
54
46
environment-vars += ${bigbang:environment-vars}
55
47
56
48
[instance-debug]
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ function start() {
61
61
62
62
setup " $1 "
63
63
64
- # PRIORIY=" instance-cron instance-debug maintenance script zeoserver"
64
+ # PRIORIY=instance-cron instance-debug maintenance script zeoserver"
65
65
# if [[ "instance" == "$1" || ( ! $PRIORIY == *"$1"* && $# -gt 0 ) ]]; then
66
66
# wait_for_cron "$1"
67
67
# fi
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ def __init__(
28
28
self .instance1_conf = '/plone/parts/instance/etc/zope.conf'
29
29
self .instance_amqp_conf = '/plone/parts/instance-amqp/etc/zope.conf'
30
30
self .instance_async_conf = '/plone/parts/instance-async/etc/zope.conf'
31
- self .instance_cron_conf = '/plone/parts/instance-cron/etc/zope.conf'
32
31
self .instance_debug_conf = '/plone/parts/instance-debug/etc/zope.conf'
33
32
self .zeoserver_conf = '/plone/parts/zeoserver/etc/zeo.conf'
34
33
@@ -84,10 +83,9 @@ def _fix_amqp(self, path):
84
83
def fixtures (self ):
85
84
""" ZEO Client
86
85
"""
87
- self ._fix_conf (self .instance1_conf , False )
86
+ self ._fix_conf (self .instance1_conf , True )
88
87
self ._fix_conf (self .instance_async_conf , False )
89
88
self ._fix_conf (self .instance_amqp_conf , False )
90
- self ._fix_conf (self .instance_cron_conf , True )
91
89
# instance debug doesn't exist in dev env
92
90
if os .path .exists (self .instance_debug_conf ):
93
91
self ._fix_conf (self .instance_debug_conf , False )
You can’t perform that action at this time.
0 commit comments