Marcus Ilgner
Marcus Ilgner
I see that there are merge conflicts again. I can quickly resolve those if desired. But a short :+1: or :-1: would be appreciated so I don't have to resolve...
Potentially related to #945
I'd refactor this to query the customers based on either a scope or, as this is a simple association here, using the foreign keys: ```ruby class Customer belongs_to :user, inverse_of:...
Changelog has been added but now it seems like there's a conflict with the master branch. I just stumbled over this when trying to integrade CodeClimate with Jacoco in a...
@authorjapps thank you for the quick reply! Yes, indeed. The tests run fine by themselves but in the context of `@TestMapping` they are not considered for execution anymore.
What server are you using? I just encountered the selfsame error with a different library where sessions were kept on the server even after the client disconnected.
The problem usually only occurs if the client doesn't send a CloseSession request. Check your code: it should have `defer client.Close()` right after establishing the connection or you will need...
In that case I am out of ideas. I encountered the same problem with another client/server combination but with this library everything works expected and the session is gone after...
I was also wondering about the exact requirements towards the randomness of global ids. Assuming that there is a limited number of active session IDs, those can be easily generated...
Thank you very much for the quick follow-up and explanation! I was not aware whether predictability by an observer was actually an issue here and thought that avoidance of collision...