Using a single session in multiple threads is likely a bug
Hibernate Profiler has detected a session that is used in a different thread than the one it was opened on.
Hibernate sessions are not thread safe, and attempting to use them in multiple threads requires careful synchronization. It is generally better to consider a session only useful within the thread that created it.
There are valid scenarios for cross thread session usage (background loading when you dealt with the synchronization, session per conversation pattern), but usually this alert indicate a problem in serializing access to the session.
If you are using the session across multiple threads intentionally and are certain that you are correctly serializing access to it, then you can safely ignore this alert.
You can also disable this alert completely in the options dialog.