Skip to content

Commit 57e334a

Browse files
committed
docs: added literalinclude(s) for WMS services
1 parent b673f13 commit 57e334a

File tree

5 files changed

+36
-0
lines changed

5 files changed

+36
-0
lines changed

src/DIRAC/WorkloadManagementSystem/ConfigTemplate.cfg

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Services
99
Default = authenticated
1010
}
1111
}
12+
##BEGIN TornadoJobManager
1213
TornadoJobManager
1314
{
1415
Protocol = https
@@ -17,6 +18,7 @@ Services
1718
Default = authenticated
1819
}
1920
}
21+
##END
2022
JobMonitoring
2123
{
2224
Port = 9130
@@ -25,6 +27,7 @@ Services
2527
Default = authenticated
2628
}
2729
}
30+
##BEGIN TornadoJobMonitoring
2831
TornadoJobMonitoring
2932
{
3033
Protocol = https
@@ -33,6 +36,7 @@ Services
3336
Default = authenticated
3437
}
3538
}
39+
##END
3640
JobStateUpdate
3741
{
3842
Port = 9136
@@ -42,6 +46,7 @@ Services
4246
}
4347
MaxThreads = 100
4448
}
49+
##BEGIN TornadoJobStateUpdate
4550
TornadoJobStateUpdate
4651
{
4752
Protocol = https
@@ -50,6 +55,7 @@ Services
5055
Default = authenticated
5156
}
5257
}
58+
##END
5359
#Parameters of the WMS Matcher service
5460
Matcher
5561
{
@@ -78,6 +84,7 @@ Services
7884
banSite += Operator
7985
}
8086
}
87+
##BEGIN TornadoWMSAdministrator
8188
TornadoWMSAdministrator
8289
{
8390
Protocol = https
@@ -94,6 +101,7 @@ Services
94101
banSite += Operator
95102
}
96103
}
104+
##END
97105
#Parameters of the Pilots service
98106
PilotManager
99107
{

src/DIRAC/WorkloadManagementSystem/Service/TornadoJobManagerHandler.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
""" 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+
29
"""
310
from DIRAC import gLogger
411
from DIRAC.Core.Tornado.Server.TornadoService import TornadoService

src/DIRAC/WorkloadManagementSystem/Service/TornadoJobMonitoringHandler.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
""" 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+
29
"""
310
from DIRAC import gLogger
411
from DIRAC.Core.Tornado.Server.TornadoService import TornadoService

src/DIRAC/WorkloadManagementSystem/Service/TornadoJobStateUpdateHandler.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
""" 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+
29
"""
310
from DIRAC import gLogger
411
from DIRAC.Core.Tornado.Server.TornadoService import TornadoService

src/DIRAC/WorkloadManagementSystem/Service/TornadoWMSAdministratorHandler.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
""" 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+
29
"""
310
from DIRAC import gLogger
411
from DIRAC.Core.Tornado.Server.TornadoService import TornadoService

0 commit comments

Comments
 (0)