Skip to content

Commit 20bfaaa

Browse files
committed
fixed blocking issue
1 parent 2b05257 commit 20bfaaa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/automation/troubleshoot/extension-based-hybrid-runbook-worker.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ You can remove this limit and make it unrestricted with the following steps:
9393
1. vi /lib/systemd/system/hwd.service
9494
1. Update the setting from CPUQuota=25% to CPUQuota= as shown below to make the usage unrestricted.
9595
96-
```
96+
```
9797
root@ubuntu2204:~# cat /lib/systemd/system/hwd.service
9898
[Unit]
9999
Description=HW Service
@@ -112,7 +112,7 @@ You can remove this limit and make it unrestricted with the following steps:
112112
[Install]
113113
WantedBy=multi-user.target
114114

115-
```
115+
```
116116
117117
**Restart hwd service**
118118
1. systemctl daemon-reload
@@ -315,15 +315,15 @@ Sometimes the uninstallation process might get stuck.
315315
```
316316
1. **Remove registry key**, if present: `HKLM:\Software\Microsoft\Azure\HybridWorker`
317317

318-
1. PowerShell code to remove the registry key along with any subkeys and values under it.:
318+
1. PowerShell code to remove the registry key along with any sub keys and values under it.:
319319

320320
```powershell
321321
Get-Item HKLM:\Software\Microsoft\Azure\HybridWorker | Remove-Item -Recurse
322322
```
323323
324324
1. **Remove the registry key**, if present: `HKLM:\Software\Microsoft\HybridRunbookWorkerV2`
325325
326-
1. PowerShell code to remove the registry key along with any subkeys and values under it.:
326+
1. PowerShell code to remove the registry key along with any sub keys and values under it.:
327327
328328
```powershell
329329
Get-Item HKLM:\Software\Microsoft\HybridRunbookWorkerV2 | Remove-Item -Recurse

0 commit comments

Comments
 (0)