File tree Expand file tree Collapse file tree 5 files changed +36
-0
lines changed
src/DIRAC/WorkloadManagementSystem Expand file tree Collapse file tree 5 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 9
9
Default = authenticated
10
10
}
11
11
}
12
+ # #BEGIN TornadoJobManager
12
13
TornadoJobManager
13
14
{
14
15
Protocol = https
@@ -17,6 +18,7 @@ Services
17
18
Default = authenticated
18
19
}
19
20
}
21
+ # #END
20
22
JobMonitoring
21
23
{
22
24
Port = 9130
@@ -25,6 +27,7 @@ Services
25
27
Default = authenticated
26
28
}
27
29
}
30
+ # #BEGIN TornadoJobMonitoring
28
31
TornadoJobMonitoring
29
32
{
30
33
Protocol = https
@@ -33,6 +36,7 @@ Services
33
36
Default = authenticated
34
37
}
35
38
}
39
+ # #END
36
40
JobStateUpdate
37
41
{
38
42
Port = 9136
@@ -42,6 +46,7 @@ Services
42
46
}
43
47
MaxThreads = 100
44
48
}
49
+ # #BEGIN TornadoJobStateUpdate
45
50
TornadoJobStateUpdate
46
51
{
47
52
Protocol = https
@@ -50,6 +55,7 @@ Services
50
55
Default = authenticated
51
56
}
52
57
}
58
+ # #END
53
59
# Parameters of the WMS Matcher service
54
60
Matcher
55
61
{
@@ -78,6 +84,7 @@ Services
78
84
banSite += Operator
79
85
}
80
86
}
87
+ # #BEGIN TornadoWMSAdministrator
81
88
TornadoWMSAdministrator
82
89
{
83
90
Protocol = https
@@ -94,6 +101,7 @@ Services
94
101
banSite += Operator
95
102
}
96
103
}
104
+ # #END
97
105
# Parameters of the Pilots service
98
106
PilotManager
99
107
{
Original file line number Diff line number Diff line change 1
1
""" Tornado-based HTTPs JobManager service.
2
+
3
+ .. literalinclude:: ../ConfigTemplate.cfg
4
+ :start-after: ##BEGIN TornadoJobManager
5
+ :end-before: ##END
6
+ :dedent: 2
7
+ :caption: JobManager options
8
+
2
9
"""
3
10
from DIRAC import gLogger
4
11
from DIRAC .Core .Tornado .Server .TornadoService import TornadoService
Original file line number Diff line number Diff line change 1
1
""" Tornado-based HTTPs JobMonitoring service.
2
+
3
+ .. literalinclude:: ../ConfigTemplate.cfg
4
+ :start-after: ##BEGIN TornadoJobMonitoring
5
+ :end-before: ##END
6
+ :dedent: 2
7
+ :caption: JobMonitoring options
8
+
2
9
"""
3
10
from DIRAC import gLogger
4
11
from DIRAC .Core .Tornado .Server .TornadoService import TornadoService
Original file line number Diff line number Diff line change 1
1
""" Tornado-based HTTPs JobStateUpdate service.
2
+
3
+ .. literalinclude:: ../ConfigTemplate.cfg
4
+ :start-after: ##BEGIN TornadoJobStateUpdate
5
+ :end-before: ##END
6
+ :dedent: 2
7
+ :caption: JobStateUpdate options
8
+
2
9
"""
3
10
from DIRAC import gLogger
4
11
from DIRAC .Core .Tornado .Server .TornadoService import TornadoService
Original file line number Diff line number Diff line change 1
1
""" Tornado-based HTTPs WMSAdministrator service.
2
+
3
+ .. literalinclude:: ../ConfigTemplate.cfg
4
+ :start-after: ##BEGIN TornadoWMSAdministrator
5
+ :end-before: ##END
6
+ :dedent: 2
7
+ :caption: WMSAdministrator options
8
+
2
9
"""
3
10
from DIRAC import gLogger
4
11
from DIRAC .Core .Tornado .Server .TornadoService import TornadoService
You can’t perform that action at this time.
0 commit comments