Skip to content

Commit

Permalink
tor: rename tor to TorDA
Browse files Browse the repository at this point in the history
  • Loading branch information
willcl-ark committed Oct 30, 2023
1 parent a8d1016 commit 9339b21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/interfaces/docker_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from .interfaces import ContainerInterface
from warnet.utils import bubble_exception_str, parse_raw_messages
from services.tor import Tor
from services.tor_da import TorDA
from services.fork_observer import ForkObserver
from services.fluentd import Fluentd
from templates import TEMPLATES
Expand Down Expand Up @@ -200,7 +200,7 @@ def _write_docker_compose(self, warnet):
# Prometheus(warnet.network_name, self.config_dir),
# NodeExporter(warnet.network_name),
# Grafana(warnet.network_name),
Tor(warnet.network_name, TEMPLATES),
TorDA(warnet.network_name, TEMPLATES),
ForkObserver(warnet.network_name, warnet.fork_observer_config),
Fluentd(warnet.network_name, warnet.config_dir),
]
Expand Down
2 changes: 1 addition & 1 deletion src/services/tor.py → src/services/tor_da.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
DIRECTORY_AUTHORITY_IP = "100.20.15.18"


class Tor(BaseService):
class TorDA(BaseService):
def __init__(self, docker_network, templates):
super().__init__(docker_network)
self.templates = templates
Expand Down

0 comments on commit 9339b21

Please sign in to comment.