You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to clojure...@googlegroups.com
I've recently refactored my code to connect to my local CouchDB server over my home network (passing `get-db` a url with an ip address + port + db, as opposed to just the db name). Since doing so, I've been getting an irritating error:
ConnectTimeoutExceptionConnect to <ip>:<port> timed out org.apache.http.conn.scheme.PlainSocketFactory.connectSocket (PlainSocketFactory.java:119)
My local network is admittedly a bit shaky, but I'd like to be able to do connect like this so I could theoretically run my code in multiple places and have each instance write to the same DB. Any suggestions on best handling this kind of situation? I'd really rather not have to wrap everything that hits the DB in try/catch if I can possibly avoid it.