Skip to content

Commit

Permalink
change process name
Browse files Browse the repository at this point in the history
  • Loading branch information
dream80 committed Sep 26, 2021
1 parent 5087b3b commit d6bc37e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,4 @@ chia-blockchain-gui/src/locales/_build
build_scripts\win_build
build_scripts/win_build
win_code_sign_cert.p12
build_scripts/final_installer
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ PreFarm: 666,666six
# DownLoad

Installation package
[Windows](https://github.com/dream80/lucky-blockchain/releases/download/v1.2.10.10/LuckySetup-1.2.10.10.exe
[Ubuntu20.04](https://www.luckysix.top/Lucky-1.2.10.10_amd64.deb)
[Windows](https://github.com/dream80/lucky-blockchain/releases/download/v1.2.10.10/LuckySetup-1.2.10.10.exe)
[Ubuntu20.04](https://www.luckysix.top/Lucky-1.2.10.11_amd64.deb)

MacOS Coming soon

Expand Down
2 changes: 1 addition & 1 deletion chia/daemon/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ def singleton(lockfile: Path, text: str = "semaphore") -> Optional[TextIO]:
async def async_run_daemon(root_path: Path) -> int:
chia_init(root_path)
config = load_config(root_path, "config.yaml")
setproctitle("chia_daemon")
setproctitle("lucky_daemon")
initialize_logging("daemon", config["logging"], root_path)
lockfile = singleton(daemon_launch_lock_path(root_path))
crt_path = root_path / config["daemon_ssl"]["private_crt"]
Expand Down
2 changes: 1 addition & 1 deletion chia/server/start_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __init__(
self._rpc_close_task: Optional[asyncio.Task] = None
self._network_id: str = network_id

proctitle_name = f"chia_{service_name}"
proctitle_name = f"lucky_{service_name}"
setproctitle(proctitle_name)
self._log = logging.getLogger(service_name)

Expand Down

0 comments on commit d6bc37e

Please sign in to comment.