Fork me on GitHub
#datomic
<
2021-06-21
>
kenny19:06:06

The d/client API docs have the following statement: > Create a client for a Datomic system. This function does not communicate with a server and returns immediately. However, running a call to d/client seems to indicate this function does communicate with a server in some regard.

(d/client {:server-type :ion
             :system      "my-system"
             :endpoint    ""
             :region      "us-west-2"})
Execution error (ExceptionInfo) at datomic.client.impl.cloud/get-s3-auth-path (cloud.clj:179).
Unable to connect to 
Given that, should the d/client docstring be updated to mention it does do some server communication?

kenny19:06:41

Also, should that function expose a :timeout option?