mongoid 7.3.4 → 7.3.5

Sign up to get free protection for your applications and to get access to all the features.
metadata.gz.sig CHANGED
@@ -1,3 +1,2 @@
1
- !���av a��>ʐ�&j�YZv1DzhbT2�����["�~�3ԙB�]��]1��r
2
- � gh^K�!kD���!���h(�%�p8YV ��c��+ܷ��B�,N��M�Ū}�v�X QD�㮄��b`85�<!f���
3
- �K9�z�*��̗ uf4V>�ZLo#����_���9N�/(����/Uy��
1
+ t��1?��hq4Ng��8 1��S$_V���逜P���x�Яm�OU��|g�\��)��
2
+ f6&��4A��� �أj@ �M�B�Oi�t�\�2�v�PyMCn��!�&xч���$TK�?���"���2z���㵺]���3���l*�����(����H-���.)n4�� d=�Te��Xl�-�.pP��q�� ��_kP����Y�Uh��y:��
@@ -1,50 +0,0 @@
1
- require 'singleton'
2
-
3
- module Mongo
4
- class Client
5
- alias :get_session_without_tracking :get_session
6
-
7
- def get_session(options = {})
8
- get_session_without_tracking(options).tap do |session|
9
- SessionRegistry.instance.register(session)
10
- end
11
- end
12
- end
13
-
14
- class Session
15
- alias :end_session_without_tracking :end_session
16
-
17
- def end_session
18
- SessionRegistry.instance.unregister(self)
19
- end_session_without_tracking
20
- end
21
- end
22
- end
23
-
24
-
25
- class SessionRegistry
26
- include Singleton
27
-
28
- def initialize
29
- @registry = {}
30
- end
31
-
32
- def register(session)
33
- @registry[session.session_id] = session if session
34
- end
35
-
36
- def unregister(session)
37
- @registry.delete(session.session_id)
38
- end
39
-
40
- def verify_sessions_ended!
41
- unless @registry.empty?
42
- sessions = @registry.map { |_, session| session }
43
- raise "Session registry contains live sessions: #{sessions.join(', ')}"
44
- end
45
- end
46
-
47
- def clear_registry
48
- @registry = {}
49
- end
50
- end