You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Until the official release use the version from the temporal-java-samples [build.gradle](https://github.com/temporalio/temporal-java-samples/blob/master/build.gradle)
43
-
44
44
## Documentation
45
45
46
46
The documentation on how to use the Temporal Java client is [here](http://docs.temporal.io/docs/java-quick-start).
47
47
48
48
Javadocs for the client API are located [here](https://www.javadoc.io/doc/io.temporal/temporal-sdk).
49
49
50
+
### macOS Users
51
+
Due to issues with default hostname resolution
52
+
(see [this StackOverflow question](https://stackoverflow.com/questions/33289695/inetaddress-getlocalhost-slow-to-run-30-seconds) for more details),
53
+
macOS Users may see gRPC `DEADLINE_EXCEEDED` errors and other slowdowns when running the SDK.
54
+
55
+
To solve the problem add the following entries to your `/etc/hosts` file (where my-macbook is your hostname):
56
+
57
+
```conf
58
+
127.0.0.1 my-macbook
59
+
::1 my-macbook
60
+
```
61
+
62
+
50
63
## Contributing
51
64
We'd love your help in making the Temporal Java SDKL great. Please review our [contribution guidelines](CONTRIBUTING.md).
0 commit comments