File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -1830,6 +1830,8 @@ def auth(connection):
1830
1830
if e.code == 18:
1831
1831
invalidate(access_token)
1832
1832
access_token, _ = get_access_token()
1833
+ else:
1834
+ raise e # Raise other errors.
1833
1835
1834
1836
connection.oidc_cache.access_token = access_token
1835
1837
sasl_start(connection, payload={"jwt": access_token})
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ source the `secrets-export.sh` file and use the associated env variables in your
199
199
}
200
200
```
201
201
202
- - Perform a ` find ` operation that fails.
202
+ - Perform a ` insert ` operation that fails.
203
203
- Assert that the callback was called 2 times.
204
204
- Close the client.
205
205
@@ -209,7 +209,7 @@ source the `secrets-export.sh` file and use the associated env variables in your
209
209
- Populate the * Client Cache* with a valid access token to enforce Speculative Authentication.
210
210
- Perform an ` insert ` operation that succeeds.
211
211
- Assert that the callback was not called.
212
- - Assert there were no ` SaslStart ` commands executed.
212
+ - Assert there were no ` saslStart ` commands executed.
213
213
- Set a fail point for ` insert ` commands of the form:
214
214
215
215
``` javascript
@@ -229,7 +229,7 @@ source the `secrets-export.sh` file and use the associated env variables in your
229
229
230
230
- Perform an ` insert ` operation that succeeds.
231
231
- Assert that the callback was called once.
232
- - Assert there were ` SaslStart ` commands executed.
232
+ - Assert there were ` saslStart ` commands executed.
233
233
- Close the client.
234
234
235
235
#### 4.5 Reauthentication Succeeds when a Session is involved
You can’t perform that action at this time.
0 commit comments