This repository was archived by the owner on Feb 4, 2022. It is now read-only.
File tree 1 file changed +20
-0
lines changed
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,13 @@ class Transaction {
101
101
102
102
if ( options . readConcern ) this . options . readConcern = options . readConcern ;
103
103
if ( options . readPreference ) this . options . readPreference = options . readPreference ;
104
+
105
+ // TODO: This isn't technically necessary
106
+ this . _pinnedServer = undefined ;
107
+ }
108
+
109
+ get server ( ) {
110
+ return this . _pinnedServer ;
104
111
}
105
112
106
113
/**
@@ -122,13 +129,26 @@ class Transaction {
122
129
const nextStates = stateMachine [ this . state ] ;
123
130
if ( nextStates && nextStates . indexOf ( nextState ) !== - 1 ) {
124
131
this . state = nextState ;
132
+ if ( this . state === TxnState . NO_TRANSACTION ) {
133
+ this . unpinServer ( ) ;
134
+ }
125
135
return ;
126
136
}
127
137
128
138
throw new MongoError (
129
139
`Attempted illegal state transition from [${ this . state } ] to [${ nextState } ]`
130
140
) ;
131
141
}
142
+
143
+ pinServer ( server ) {
144
+ if ( this . isActive ) {
145
+ this . _pinnedServer = server ;
146
+ }
147
+ }
148
+
149
+ unpinServer ( ) {
150
+ this . _pinnedServer = undefined ;
151
+ }
132
152
}
133
153
134
154
module . exports = { TxnState, Transaction } ;
You can’t perform that action at this time.
0 commit comments