Skip to content

Commit 6aebd2b

Browse files
authored
Merge branch 'v1.15' into patch-1
2 parents bed5671 + 5435bd4 commit 6aebd2b

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/workflows/stale-pr-monitor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
stale-pr-message: 'Stale PR, paging all reviewers'
1919
stale-pr-label: 'stale'
2020
exempt-pr-labels: 'question,"help wanted",do-not-merge,waiting-on-code-pr'
21-
days-before-stale: 5
21+
days-before-stale: 30

daprdocs/content/en/operations/troubleshooting/common_issues.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,3 +291,21 @@ kubectl config get-users
291291
```
292292

293293
You may learn more about webhooks [here](https://kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/).
294+
295+
## Ports not available during `dapr init`
296+
You might encounter the following error on Windows after attempting to execute `dapr init`:
297+
298+
> PS C:\Users\You> dapr init
299+
Making the jump to hyperspace...
300+
Container images will be pulled from Docker Hub
301+
Installing runtime version 1.14.4
302+
Downloading binaries and setting up components...
303+
docker: Error response from daemon: Ports are not available: exposing port TCP 0.0.0.0:52379 -> 0.0.0.0:0: listen tcp4 0.0.0.0:52379: bind: An attempt was made to access a socket in a way forbidden by its access permissions.
304+
305+
To resolve this error, open a command prompt in an elevated terminal and run:
306+
307+
```bash
308+
nat stop winnat
309+
dapr init
310+
net start winnat
311+
```

0 commit comments

Comments
 (0)