tolitius / chazel

Hazelcast bells and whistles under the Clojure belt
Eclipse Public License 1.0
72 stars 8 forks source link

project deps need to be updated #2

Closed middlesphere closed 8 years ago

middlesphere commented 8 years ago

Hello!

Currently your project.clj contains [com.hazelcast/hazelcast "3.5.3"] and [com.hazelcast/hazelcast-client "3.5.3"] dependencies. These deps can hang client during connection to a cluster. I've updated my project.clj like this and now I can connect to hazelcast 3.6 (docker image)

             [com.hazelcast/hazelcast "3.6"]
             [com.hazelcast/hazelcast-client "3.6"]
             [chazel "0.1.7"
              :exclusions [com.hazelcast/hazelcast com.hazelcast/hazelcast-client]] ;caching

this thread https://github.com/hazelcast/hazelcast/issues/5815 tells that hazelcast 3.5 have some bugs.

Mike.

tolitius commented 8 years ago

good catch, thanks for reporting it. chazel 0.1.8-SNAPSHOT has HZ 3.6 (server and client) as its dep.

Let me know if that works for you.

middlesphere commented 8 years ago

I removed hazelcast-client and added new SNAPSHOT ;[com.hazelcast/hazelcast-client "3.6"] ;cache client [chazel "0.1.8-SNAPSHOT"] ;caching

Now, everything works fine! Thanks.