Skip to content

Commit ed6f171

Browse files
cephadm: black format daemons/tracing.py
Signed-off-by: John Mulligan <[email protected]>
1 parent b0f1c7f commit ed6f171

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/cephadm/cephadmlib/daemons/tracing.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Tracing(ContainerDaemonForm):
2727
components: Dict[str, Dict[str, Any]] = {
2828
'elasticsearch': {
2929
'image': DEFAULT_ELASTICSEARCH_IMAGE,
30-
'envs': ['discovery.type=single-node']
30+
'envs': ['discovery.type=single-node'],
3131
},
3232
'jaeger-agent': {
3333
'image': DEFAULT_JAEGER_AGENT_IMAGE,
@@ -50,12 +50,13 @@ def set_configuration(config: Dict[str, str], daemon_type: str) -> None:
5050
assert 'elasticsearch_nodes' in config
5151
Tracing.components[daemon_type]['envs'] = [
5252
'SPAN_STORAGE_TYPE=elasticsearch',
53-
f'ES_SERVER_URLS={config["elasticsearch_nodes"]}']
53+
f'ES_SERVER_URLS={config["elasticsearch_nodes"]}',
54+
]
5455
if daemon_type == 'jaeger-agent':
5556
assert 'collector_nodes' in config
5657
Tracing.components[daemon_type]['daemon_args'] = [
5758
f'--reporter.grpc.host-port={config["collector_nodes"]}',
58-
'--processor.jaeger-compact.server-host-port=6799'
59+
'--processor.jaeger-compact.server-host-port=6799',
5960
]
6061

6162
def __init__(self, ident: DaemonIdentity) -> None:

0 commit comments

Comments
 (0)