mongo 2.20.1 → 2.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/Rakefile +2 -2
- data/lib/mongo/address.rb +22 -3
- data/lib/mongo/auth/aws/credentials_retriever.rb +70 -17
- data/lib/mongo/auth/base.rb +1 -1
- data/lib/mongo/bulk_write.rb +35 -2
- data/lib/mongo/client.rb +38 -6
- data/lib/mongo/client_encryption.rb +6 -3
- data/lib/mongo/cluster/reapers/cursor_reaper.rb +6 -1
- data/lib/mongo/cluster/sdam_flow.rb +20 -7
- data/lib/mongo/cluster.rb +14 -4
- data/lib/mongo/collection/helpers.rb +1 -1
- data/lib/mongo/collection/view/aggregation/behavior.rb +131 -0
- data/lib/mongo/collection/view/aggregation.rb +33 -99
- data/lib/mongo/collection/view/builder/aggregation.rb +1 -7
- data/lib/mongo/collection/view/change_stream.rb +80 -27
- data/lib/mongo/collection/view/iterable.rb +76 -60
- data/lib/mongo/collection/view/map_reduce.rb +25 -8
- data/lib/mongo/collection/view/readable.rb +79 -30
- data/lib/mongo/collection/view/writable.rb +109 -48
- data/lib/mongo/collection/view.rb +43 -3
- data/lib/mongo/collection.rb +158 -23
- data/lib/mongo/crypt/auto_encrypter.rb +4 -6
- data/lib/mongo/crypt/binding.rb +4 -4
- data/lib/mongo/crypt/context.rb +20 -14
- data/lib/mongo/crypt/encryption_io.rb +56 -26
- data/lib/mongo/crypt/explicit_encrypter.rb +49 -20
- data/lib/mongo/crypt/explicit_encryption_context.rb +17 -11
- data/lib/mongo/crypt/kms/azure/credentials_retriever.rb +22 -6
- data/lib/mongo/crypt/kms/gcp/credentials_retriever.rb +29 -4
- data/lib/mongo/csot_timeout_holder.rb +119 -0
- data/lib/mongo/cursor/kill_spec.rb +5 -2
- data/lib/mongo/cursor/nontailable.rb +27 -0
- data/lib/mongo/cursor.rb +86 -24
- data/lib/mongo/cursor_host.rb +82 -0
- data/lib/mongo/database/view.rb +81 -14
- data/lib/mongo/database.rb +88 -18
- data/lib/mongo/error/operation_failure.rb +209 -204
- data/lib/mongo/error/server_timeout_error.rb +12 -0
- data/lib/mongo/error/socket_timeout_error.rb +3 -1
- data/lib/mongo/error/timeout_error.rb +23 -0
- data/lib/mongo/error.rb +2 -0
- data/lib/mongo/grid/fs_bucket.rb +45 -12
- data/lib/mongo/grid/stream/read.rb +15 -1
- data/lib/mongo/grid/stream/write.rb +21 -4
- data/lib/mongo/index/view.rb +77 -16
- data/lib/mongo/operation/context.rb +40 -2
- data/lib/mongo/operation/create_search_indexes/op_msg.rb +2 -2
- data/lib/mongo/operation/delete/op_msg.rb +2 -1
- data/lib/mongo/operation/drop_search_index/op_msg.rb +2 -2
- data/lib/mongo/operation/find/op_msg.rb +45 -0
- data/lib/mongo/operation/get_more/op_msg.rb +33 -0
- data/lib/mongo/operation/insert/op_msg.rb +3 -2
- data/lib/mongo/operation/insert/result.rb +4 -2
- data/lib/mongo/operation/list_collections/result.rb +1 -1
- data/lib/mongo/operation/map_reduce/result.rb +1 -1
- data/lib/mongo/operation/op_msg_base.rb +3 -1
- data/lib/mongo/operation/result.rb +26 -5
- data/lib/mongo/operation/shared/executable.rb +12 -1
- data/lib/mongo/operation/shared/op_msg_executable.rb +4 -1
- data/lib/mongo/operation/shared/response_handling.rb +3 -3
- data/lib/mongo/operation/shared/sessions_supported.rb +1 -1
- data/lib/mongo/operation/shared/timed.rb +52 -0
- data/lib/mongo/operation/shared/write.rb +4 -1
- data/lib/mongo/operation/update/op_msg.rb +2 -1
- data/lib/mongo/operation/update_search_index/op_msg.rb +2 -2
- data/lib/mongo/operation.rb +1 -0
- data/lib/mongo/protocol/message.rb +1 -4
- data/lib/mongo/protocol/msg.rb +2 -2
- data/lib/mongo/retryable/read_worker.rb +69 -29
- data/lib/mongo/retryable/write_worker.rb +49 -18
- data/lib/mongo/retryable.rb +8 -2
- data/lib/mongo/server/connection.rb +11 -5
- data/lib/mongo/server/connection_base.rb +22 -2
- data/lib/mongo/server/connection_pool.rb +32 -14
- data/lib/mongo/server/description/features.rb +1 -1
- data/lib/mongo/server/description.rb +18 -5
- data/lib/mongo/server/monitor.rb +7 -4
- data/lib/mongo/server/pending_connection.rb +7 -3
- data/lib/mongo/server/{round_trip_time_averager.rb → round_trip_time_calculator.rb} +25 -7
- data/lib/mongo/server.rb +11 -6
- data/lib/mongo/server_selector/base.rb +25 -9
- data/lib/mongo/session.rb +78 -9
- data/lib/mongo/socket/ssl.rb +109 -17
- data/lib/mongo/socket/tcp.rb +40 -6
- data/lib/mongo/socket.rb +154 -25
- data/lib/mongo/uri/options_mapper.rb +1 -0
- data/lib/mongo/version.rb +1 -1
- data/lib/mongo.rb +1 -0
- data/spec/atlas/atlas_connectivity_spec.rb +4 -0
- data/spec/atlas/operations_spec.rb +4 -0
- data/spec/integration/client_side_encryption/auto_encryption_mongocryptd_spawn_spec.rb +2 -1
- data/spec/integration/client_side_encryption/auto_encryption_spec.rb +494 -487
- data/spec/integration/client_side_encryption/on_demand_aws_credentials_spec.rb +1 -1
- data/spec/integration/client_side_encryption/range_explicit_encryption_prose_spec.rb +66 -22
- data/spec/integration/client_side_operations_timeout/encryption_prose_spec.rb +131 -0
- data/spec/integration/connection_pool_populator_spec.rb +2 -0
- data/spec/integration/cursor_pinning_spec.rb +15 -60
- data/spec/integration/cursor_reaping_spec.rb +1 -1
- data/spec/integration/docs_examples_spec.rb +1 -1
- data/spec/integration/operation_failure_code_spec.rb +1 -1
- data/spec/integration/operation_failure_message_spec.rb +3 -3
- data/spec/integration/retryable_errors_spec.rb +2 -2
- data/spec/integration/sdam_error_handling_spec.rb +2 -1
- data/spec/integration/search_indexes_prose_spec.rb +4 -0
- data/spec/integration/server_spec.rb +4 -3
- data/spec/integration/transactions_api_examples_spec.rb +2 -0
- data/spec/kerberos/kerberos_spec.rb +4 -0
- data/spec/lite_spec_helper.rb +3 -1
- data/spec/mongo/auth/user/view_spec.rb +1 -1
- data/spec/mongo/caching_cursor_spec.rb +1 -1
- data/spec/mongo/client_encryption_spec.rb +1 -0
- data/spec/mongo/client_spec.rb +158 -4
- data/spec/mongo/collection/view/aggregation_spec.rb +14 -39
- data/spec/mongo/collection/view/change_stream_spec.rb +3 -3
- data/spec/mongo/collection_spec.rb +5 -6
- data/spec/mongo/crypt/auto_encrypter_spec.rb +14 -12
- data/spec/mongo/crypt/data_key_context_spec.rb +3 -1
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +2 -2
- data/spec/mongo/crypt/handle_spec.rb +1 -1
- data/spec/mongo/cursor_spec.rb +26 -9
- data/spec/mongo/error/operation_failure_heavy_spec.rb +2 -2
- data/spec/mongo/operation/context_spec.rb +79 -0
- data/spec/mongo/operation/create/op_msg_spec.rb +106 -110
- data/spec/mongo/operation/delete/op_msg_spec.rb +6 -5
- data/spec/mongo/operation/find/op_msg_spec.rb +66 -0
- data/spec/mongo/operation/get_more/op_msg_spec.rb +65 -0
- data/spec/mongo/operation/insert/op_msg_spec.rb +128 -131
- data/spec/mongo/operation/shared/csot/examples.rb +113 -0
- data/spec/mongo/query_cache_spec.rb +243 -225
- data/spec/mongo/retryable_spec.rb +1 -0
- data/spec/mongo/server/round_trip_time_calculator_spec.rb +120 -0
- data/spec/mongo/socket/ssl_spec.rb +0 -10
- data/spec/runners/change_streams/test.rb +2 -2
- data/spec/runners/crud/operation.rb +1 -1
- data/spec/runners/crud/verifier.rb +3 -1
- data/spec/runners/transactions/operation.rb +4 -6
- data/spec/runners/unified/ambiguous_operations.rb +13 -0
- data/spec/runners/unified/assertions.rb +4 -0
- data/spec/runners/unified/change_stream_operations.rb +14 -24
- data/spec/runners/unified/crud_operations.rb +82 -59
- data/spec/runners/unified/ddl_operations.rb +38 -7
- data/spec/runners/unified/grid_fs_operations.rb +37 -2
- data/spec/runners/unified/support_operations.rb +43 -4
- data/spec/runners/unified/test.rb +22 -10
- data/spec/runners/unified.rb +1 -1
- data/spec/solo/clean_exit_spec.rb +2 -0
- data/spec/spec_tests/client_side_operations_timeout_spec.rb +15 -0
- data/spec/spec_tests/data/change_streams_unified/change-streams-clusterTime.yml +3 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-disambiguatedPaths.yml +3 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-errors.yml +3 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-pre_and_post_images.yml +1 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-resume-allowlist.yml +1 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-resume-errorLabels.yml +1 -1
- data/spec/spec_tests/data/change_streams_unified/change-streams-showExpandedEvents.yml +1 -1
- data/spec/spec_tests/data/client_side_encryption/badQueries.yml +2 -1
- data/spec/spec_tests/data/client_side_encryption/timeoutMS.yml +67 -0
- data/spec/spec_tests/data/client_side_operations_timeout/bulkWrite.yml +87 -0
- data/spec/spec_tests/data/client_side_operations_timeout/change-streams.yml +358 -0
- data/spec/spec_tests/data/client_side_operations_timeout/close-cursors.yml +129 -0
- data/spec/spec_tests/data/client_side_operations_timeout/command-execution.yml +250 -0
- data/spec/spec_tests/data/client_side_operations_timeout/convenient-transactions.yml +113 -0
- data/spec/spec_tests/data/client_side_operations_timeout/cursors.yml +70 -0
- data/spec/spec_tests/data/client_side_operations_timeout/deprecated-options.yml +3982 -0
- data/spec/spec_tests/data/client_side_operations_timeout/error-transformations.yml +96 -0
- data/spec/spec_tests/data/client_side_operations_timeout/global-timeoutMS.yml +3236 -0
- data/spec/spec_tests/data/client_side_operations_timeout/gridfs-advanced.yml +207 -0
- data/spec/spec_tests/data/client_side_operations_timeout/gridfs-delete.yml +152 -0
- data/spec/spec_tests/data/client_side_operations_timeout/gridfs-download.yml +182 -0
- data/spec/spec_tests/data/client_side_operations_timeout/gridfs-find.yml +100 -0
- data/spec/spec_tests/data/client_side_operations_timeout/gridfs-upload.yml +249 -0
- data/spec/spec_tests/data/client_side_operations_timeout/legacy-timeouts.yml +204 -0
- data/spec/spec_tests/data/client_side_operations_timeout/non-tailable-cursors.yml +307 -0
- data/spec/spec_tests/data/client_side_operations_timeout/override-collection-timeoutMS.yml +1877 -0
- data/spec/spec_tests/data/client_side_operations_timeout/override-operation-timeoutMS.yml +1918 -0
- data/spec/spec_tests/data/client_side_operations_timeout/retryability-legacy-timeouts.yml +1676 -0
- data/spec/spec_tests/data/client_side_operations_timeout/retryability-timeoutMS.yml +2824 -0
- data/spec/spec_tests/data/client_side_operations_timeout/sessions-inherit-timeoutMS.yml +168 -0
- data/spec/spec_tests/data/client_side_operations_timeout/sessions-override-operation-timeoutMS.yml +171 -0
- data/spec/spec_tests/data/client_side_operations_timeout/sessions-override-timeoutMS.yml +168 -0
- data/spec/spec_tests/data/client_side_operations_timeout/tailable-awaitData.yml +247 -0
- data/spec/spec_tests/data/client_side_operations_timeout/tailable-non-awaitData.yml +181 -0
- data/spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml +4 -0
- data/spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml +4 -0
- data/spec/spec_tests/data/crud_unified/find-test-all-options.yml +29 -0
- data/spec/spec_tests/server_selection_rtt_spec.rb +6 -6
- data/spec/support/certificates/atlas-ocsp-ca.crt +81 -83
- data/spec/support/certificates/atlas-ocsp.crt +107 -107
- data/spec/support/cluster_tools.rb +3 -3
- data/spec/support/common_shortcuts.rb +2 -2
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-Date.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-DecimalNoPrecision.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-DecimalPrecision.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-DoubleNoPrecision.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-DoublePrecision.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-Int.json +1 -1
- data/spec/support/crypt/encrypted_fields/range-encryptedFields-Long.json +1 -1
- data/spec/support/shared/session.rb +2 -2
- data/spec/support/spec_setup.rb +2 -2
- data/spec/support/utils.rb +3 -1
- metadata +78 -91
- data/spec/mongo/server/round_trip_time_averager_spec.rb +0 -48
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Aggregate.yml +0 -242
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Correctness.yml +0 -423
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Delete.yml +0 -183
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-FindOneAndUpdate.yml +0 -240
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-InsertFind.yml +0 -236
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Update.yml +0 -253
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Aggregate.yml +0 -1688
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Correctness.yml +0 -294
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Delete.yml +0 -906
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-FindOneAndUpdate.yml +0 -1685
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-InsertFind.yml +0 -1681
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Update.yml +0 -1698
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Aggregate.yml +0 -330
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Correctness.yml +0 -425
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Delete.yml +0 -227
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-FindOneAndUpdate.yml +0 -328
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-InsertFind.yml +0 -320
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Update.yml +0 -337
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Aggregate.yml +0 -914
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Correctness.yml +0 -293
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Delete.yml +0 -519
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-FindOneAndUpdate.yml +0 -912
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-InsertFind.yml +0 -908
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Update.yml +0 -925
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Aggregate.yml +0 -326
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Correctness.yml +0 -425
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Delete.yml +0 -225
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-FindOneAndUpdate.yml +0 -324
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-InsertFind.yml +0 -320
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Update.yml +0 -339
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Aggregate.yml +0 -242
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Correctness.yml +0 -424
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Delete.yml +0 -183
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-FindOneAndUpdate.yml +0 -240
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-InsertFind.yml +0 -236
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Update.yml +0 -255
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Aggregate.yml +0 -242
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Correctness.yml +0 -423
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Delete.yml +0 -183
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-FindOneAndUpdate.yml +0 -240
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-InsertFind.yml +0 -236
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Update.yml +0 -255
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-WrongType.yml +0 -44
@@ -2,35 +2,35 @@ Certificate:
|
|
2
2
|
Data:
|
3
3
|
Version: 3 (0x2)
|
4
4
|
Serial Number:
|
5
|
-
|
5
|
+
4b:a8:52:93:f7:9a:2f:a2:73:06:4b:a8:04:8d:75:d0
|
6
6
|
Signature Algorithm: sha256WithRSAEncryption
|
7
7
|
Issuer: C=US, O=Internet Security Research Group, CN=ISRG Root X1
|
8
8
|
Validity
|
9
|
-
Not Before:
|
10
|
-
Not After :
|
11
|
-
Subject: C=US, O=Let's Encrypt, CN=
|
9
|
+
Not Before: Mar 13 00:00:00 2024 GMT
|
10
|
+
Not After : Mar 12 23:59:59 2027 GMT
|
11
|
+
Subject: C=US, O=Let's Encrypt, CN=R10
|
12
12
|
Subject Public Key Info:
|
13
13
|
Public Key Algorithm: rsaEncryption
|
14
14
|
Public-Key: (2048 bit)
|
15
15
|
Modulus:
|
16
|
-
00:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
16
|
+
00:cf:57:e5:e6:c4:54:12:ed:b4:47:fe:c9:27:58:
|
17
|
+
76:46:50:28:8c:1d:3e:88:df:05:9d:d5:b5:18:29:
|
18
|
+
bd:dd:b5:5a:bf:fa:f6:ce:a3:be:af:00:21:4b:62:
|
19
|
+
5a:5a:3c:01:2f:c5:58:03:f6:89:ff:8e:11:43:eb:
|
20
|
+
c1:b5:e0:14:07:96:8f:6f:1f:d7:e7:ba:81:39:09:
|
21
|
+
75:65:b7:c2:af:18:5b:37:26:28:e7:a3:f4:07:2b:
|
22
|
+
6d:1a:ff:ab:58:bc:95:ae:40:ff:e9:cb:57:c4:b5:
|
23
|
+
5b:7f:78:0d:18:61:bc:17:e7:54:c6:bb:49:91:cd:
|
24
|
+
6e:18:d1:80:85:ee:a6:65:36:bc:74:ea:bc:50:4c:
|
25
|
+
ea:fc:21:f3:38:16:93:94:ba:b0:d3:6b:38:06:cd:
|
26
|
+
16:12:7a:ca:52:75:c8:ad:76:b2:c2:9c:5d:98:45:
|
27
|
+
5c:6f:61:7b:c6:2d:ee:3c:13:52:86:01:d9:57:e6:
|
28
|
+
38:1c:df:8d:b5:1f:92:91:9a:e7:4a:1c:cc:45:a8:
|
29
|
+
72:55:f0:b0:e6:a3:07:ec:fd:a7:1b:66:9e:3f:48:
|
30
|
+
8b:71:84:71:58:c9:3a:fa:ef:5e:f2:5b:44:2b:3c:
|
31
|
+
74:e7:8f:b2:47:c1:07:6a:cd:9a:b7:0d:96:f7:12:
|
32
|
+
81:26:51:54:0a:ec:61:f6:f7:f5:e2:f2:8a:c8:95:
|
33
|
+
0d:8d
|
34
34
|
Exponent: 65537 (0x10001)
|
35
35
|
X509v3 extensions:
|
36
36
|
X509v3 Key Usage: critical
|
@@ -40,76 +40,74 @@ Certificate:
|
|
40
40
|
X509v3 Basic Constraints: critical
|
41
41
|
CA:TRUE, pathlen:0
|
42
42
|
X509v3 Subject Key Identifier:
|
43
|
-
|
43
|
+
BB:BC:C3:47:A5:E4:BC:A9:C6:C3:A4:72:0C:10:8D:A2:35:E1:C8:E8
|
44
44
|
X509v3 Authority Key Identifier:
|
45
45
|
79:B4:59:E6:7B:B6:E5:E4:01:73:80:08:88:C8:1A:58:F6:E9:9B:6E
|
46
46
|
Authority Information Access:
|
47
47
|
CA Issuers - URI:http://x1.i.lencr.org/
|
48
|
+
X509v3 Certificate Policies:
|
49
|
+
Policy: 2.23.140.1.2.1
|
48
50
|
X509v3 CRL Distribution Points:
|
49
51
|
Full Name:
|
50
52
|
URI:http://x1.c.lencr.org/
|
51
|
-
X509v3 Certificate Policies:
|
52
|
-
Policy: 2.23.140.1.2.1
|
53
|
-
Policy: 1.3.6.1.4.1.44947.1.1.1
|
54
53
|
Signature Algorithm: sha256WithRSAEncryption
|
55
54
|
Signature Value:
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
55
|
+
92:b1:e7:41:37:eb:79:9d:81:e6:cd:e2:25:e1:3a:20:e9:90:
|
56
|
+
44:95:a3:81:5c:cf:c3:5d:fd:bd:a0:70:d5:b1:96:28:22:0b:
|
57
|
+
d2:f2:28:cf:0c:e7:d4:e6:43:8c:24:22:1d:c1:42:92:d1:09:
|
58
|
+
af:9f:4b:f4:c8:70:4f:20:16:b1:5a:dd:01:f6:1f:f8:1f:61:
|
59
|
+
6b:14:27:b0:72:8d:63:ae:ee:e2:ce:4b:cf:37:dd:bb:a3:d4:
|
60
|
+
cd:e7:ad:50:ad:bd:bf:e3:ec:3e:62:36:70:99:31:a7:e8:8d:
|
61
|
+
dd:ea:62:e2:12:ae:f5:9c:d4:3d:2c:0c:aa:d0:9c:79:be:ea:
|
62
|
+
3d:5c:44:6e:96:31:63:5a:7d:d6:7e:4f:24:a0:4b:05:7f:5e:
|
63
|
+
6f:d2:d4:ea:5f:33:4b:13:d6:57:b6:ca:de:51:b8:5d:a3:09:
|
64
|
+
82:74:fd:c7:78:9e:b3:b9:ac:16:da:4a:2b:96:c3:b6:8b:62:
|
65
|
+
8f:f9:74:19:a2:9e:03:de:e9:6f:9b:b0:0f:d2:a0:5a:f6:85:
|
66
|
+
5c:c2:04:b7:c8:d5:4e:32:c4:bf:04:5d:bc:29:f6:f7:81:8f:
|
67
|
+
0c:5d:3c:53:c9:40:90:8b:fb:b6:08:65:b9:a4:21:d5:09:e5:
|
68
|
+
13:84:84:37:82:ce:10:28:fc:76:c2:06:25:7a:46:52:4d:da:
|
69
|
+
53:72:a4:27:3f:62:70:ac:be:69:48:00:fb:67:0f:db:5b:a1:
|
70
|
+
e8:d7:03:21:2d:d7:c9:f6:99:42:39:83:43:df:77:0a:12:08:
|
71
|
+
f1:25:d6:ba:94:19:54:18:88:a5:c5:8e:e1:1a:99:93:79:6b:
|
72
|
+
ec:1c:f9:31:40:b0:cc:32:00:df:9f:5e:e7:b4:92:ab:90:82:
|
73
|
+
91:8d:0d:e0:1e:95:ba:59:3b:2e:4b:5f:c2:b7:46:35:52:39:
|
74
|
+
06:c0:bd:aa:ac:52:c1:22:a0:44:97:99:f7:0c:a0:21:a7:a1:
|
75
|
+
6c:71:47:16:17:01:68:c0:ca:a6:26:65:04:7c:b3:ae:c9:e7:
|
76
|
+
94:55:c2:6f:9b:3c:1c:a9:f9:2e:c5:20:1a:f0:76:e0:be:ec:
|
77
|
+
18:d6:4f:d8:25:fb:76:11:e8:bf:e6:21:0f:e8:e8:cc:b5:b6:
|
78
|
+
a7:d5:b8:f7:9f:41:cf:61:22:46:6a:83:b6:68:97:2e:7c:ea:
|
79
|
+
4e:95:db:23:eb:2e:c8:2b:28:84:a4:60:e9:49:f4:44:2e:3b:
|
80
|
+
f9:ca:62:57:01:e2:5d:90:16:f9:c9:fc:7a:23:48:8e:a6:d5:
|
81
|
+
81:72:f1:28:fa:5d:ce:fb:ed:4e:73:8f:94:2e:d2:41:94:98:
|
82
|
+
99:db:a7:af:70:5f:f5:be:fb:02:20:bf:66:27:6c:b4:ad:fa:
|
83
|
+
75:12:0b:2b:3e:ce:03:9e
|
85
84
|
|
86
85
|
-----BEGIN CERTIFICATE-----
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
/
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
nLRbwHOoq7hHwg==
|
86
|
+
MIIFBTCCAu2gAwIBAgIQS6hSk/eaL6JzBkuoBI110DANBgkqhkiG9w0BAQsFADBP
|
87
|
+
MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy
|
88
|
+
Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa
|
89
|
+
Fw0yNzAzMTIyMzU5NTlaMDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF
|
90
|
+
bmNyeXB0MQwwCgYDVQQDEwNSMTAwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
|
91
|
+
AoIBAQDPV+XmxFQS7bRH/sknWHZGUCiMHT6I3wWd1bUYKb3dtVq/+vbOo76vACFL
|
92
|
+
YlpaPAEvxVgD9on/jhFD68G14BQHlo9vH9fnuoE5CXVlt8KvGFs3Jijno/QHK20a
|
93
|
+
/6tYvJWuQP/py1fEtVt/eA0YYbwX51TGu0mRzW4Y0YCF7qZlNrx06rxQTOr8IfM4
|
94
|
+
FpOUurDTazgGzRYSespSdcitdrLCnF2YRVxvYXvGLe48E1KGAdlX5jgc3421H5KR
|
95
|
+
mudKHMxFqHJV8LDmowfs/acbZp4/SItxhHFYyTr6717yW0QrPHTnj7JHwQdqzZq3
|
96
|
+
DZb3EoEmUVQK7GH29/Xi8orIlQ2NAgMBAAGjgfgwgfUwDgYDVR0PAQH/BAQDAgGG
|
97
|
+
MB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDATASBgNVHRMBAf8ECDAGAQH/
|
98
|
+
AgEAMB0GA1UdDgQWBBS7vMNHpeS8qcbDpHIMEI2iNeHI6DAfBgNVHSMEGDAWgBR5
|
99
|
+
tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKG
|
100
|
+
Fmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0gBAwwCjAIBgZngQwBAgEwJwYD
|
101
|
+
VR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVuY3Iub3JnLzANBgkqhkiG9w0B
|
102
|
+
AQsFAAOCAgEAkrHnQTfreZ2B5s3iJeE6IOmQRJWjgVzPw139vaBw1bGWKCIL0vIo
|
103
|
+
zwzn1OZDjCQiHcFCktEJr59L9MhwTyAWsVrdAfYf+B9haxQnsHKNY67u4s5Lzzfd
|
104
|
+
u6PUzeetUK29v+PsPmI2cJkxp+iN3epi4hKu9ZzUPSwMqtCceb7qPVxEbpYxY1p9
|
105
|
+
1n5PJKBLBX9eb9LU6l8zSxPWV7bK3lG4XaMJgnT9x3ies7msFtpKK5bDtotij/l0
|
106
|
+
GaKeA97pb5uwD9KgWvaFXMIEt8jVTjLEvwRdvCn294GPDF08U8lAkIv7tghluaQh
|
107
|
+
1QnlE4SEN4LOECj8dsIGJXpGUk3aU3KkJz9icKy+aUgA+2cP21uh6NcDIS3XyfaZ
|
108
|
+
QjmDQ993ChII8SXWupQZVBiIpcWO4RqZk3lr7Bz5MUCwzDIA359e57SSq5CCkY0N
|
109
|
+
4B6Vulk7LktfwrdGNVI5BsC9qqxSwSKgRJeZ9wygIaehbHFHFhcBaMDKpiZlBHyz
|
110
|
+
rsnnlFXCb5s8HKn5LsUgGvB24L7sGNZP2CX7dhHov+YhD+jozLW2p9W4959Bz2Ei
|
111
|
+
RmqDtmiXLnzqTpXbI+suyCsohKRg6Un0RC47+cpiVwHiXZAW+cn8eiNIjqbVgXLx
|
112
|
+
KPpdzvvtTnOPlC7SQZSYmdunr3Bf9b77AiC/ZidstK36dRILKz7OA54=
|
115
113
|
-----END CERTIFICATE-----
|
@@ -2,52 +2,52 @@ Certificate:
|
|
2
2
|
Data:
|
3
3
|
Version: 3 (0x2)
|
4
4
|
Serial Number:
|
5
|
-
|
5
|
+
03:92:42:45:e6:7a:a2:13:84:ea:7c:7e:ce:da:6e:d4:63:67
|
6
6
|
Signature Algorithm: sha256WithRSAEncryption
|
7
|
-
Issuer: C=US, O=Let's Encrypt, CN=
|
7
|
+
Issuer: C=US, O=Let's Encrypt, CN=R10
|
8
8
|
Validity
|
9
|
-
Not Before:
|
10
|
-
Not After :
|
9
|
+
Not Before: Aug 20 13:05:04 2024 GMT
|
10
|
+
Not After : Nov 18 13:05:03 2024 GMT
|
11
11
|
Subject: CN=*.g6fyiaq.mongodb-dev.net
|
12
12
|
Subject Public Key Info:
|
13
13
|
Public Key Algorithm: rsaEncryption
|
14
14
|
Public-Key: (4096 bit)
|
15
15
|
Modulus:
|
16
|
-
00:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
86:
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
16
|
+
00:c2:ff:e0:09:f7:d1:30:47:e6:a1:c1:92:c2:ba:
|
17
|
+
cf:de:2c:86:2e:34:3a:63:f4:5a:a9:45:25:89:47:
|
18
|
+
eb:44:e8:fb:4e:0d:ac:99:5d:f8:42:74:07:a5:95:
|
19
|
+
ba:81:8b:9f:f1:64:f0:37:4e:e7:f6:59:c3:3a:08:
|
20
|
+
5b:82:55:cd:ea:81:94:b6:e7:ec:7a:d8:6b:09:41:
|
21
|
+
40:40:2f:27:b4:0e:09:d8:61:82:dc:b3:43:5b:50:
|
22
|
+
5d:03:78:08:ed:35:52:e6:3a:9b:ad:de:4f:73:b3:
|
23
|
+
56:2f:25:0d:e7:0b:61:83:e8:35:fe:73:89:e3:0e:
|
24
|
+
cb:7d:c1:29:00:d4:e2:a8:c2:9c:5c:b0:fd:4d:be:
|
25
|
+
1a:86:a7:7f:b3:d3:d9:3b:35:4c:82:b3:8d:55:0a:
|
26
|
+
9b:77:40:b0:dd:b1:e6:91:f4:91:dc:50:ee:96:92:
|
27
|
+
cc:af:11:bb:43:0a:a4:2b:5a:00:ab:9c:17:a2:e1:
|
28
|
+
bf:7c:9e:92:04:01:8f:bf:16:5f:85:9c:e4:5c:37:
|
29
|
+
97:ff:29:50:18:d7:01:66:c5:bc:51:11:ac:8a:a3:
|
30
|
+
de:58:5d:1c:44:e4:f4:fe:77:83:99:3f:57:71:2d:
|
31
|
+
2e:95:07:cc:78:b8:3c:50:4b:ea:ca:a8:20:e8:9b:
|
32
|
+
05:91:5c:40:ba:a9:c3:87:d5:95:d7:ab:67:33:03:
|
33
|
+
1d:b9:c6:d7:ef:3a:4e:aa:7d:81:bc:1b:52:fb:0e:
|
34
|
+
b4:7c:ce:9e:ff:d8:08:2b:33:ee:b6:d3:5c:7c:1a:
|
35
|
+
7e:a3:cf:cd:92:42:7f:1b:a4:36:0b:d9:51:39:c6:
|
36
|
+
cb:c1:65:c1:e2:84:53:30:ba:2e:f1:c3:07:71:09:
|
37
|
+
69:dd:ff:92:16:2c:05:1d:60:28:1c:af:5e:76:88:
|
38
|
+
9f:df:e7:97:fb:cd:19:48:7a:87:f6:24:e0:e1:e1:
|
39
|
+
ff:76:95:93:65:72:44:29:5e:69:5d:2d:26:2c:fb:
|
40
|
+
a7:06:63:ff:7f:02:29:82:61:42:d9:9a:0b:44:ea:
|
41
|
+
89:c8:bc:4a:75:17:58:05:85:04:62:1f:70:bd:79:
|
42
|
+
66:b6:bb:27:a6:88:c8:27:db:41:da:88:ec:4e:71:
|
43
|
+
0a:20:e6:e3:79:2a:ee:b5:af:99:96:72:9d:ca:c3:
|
44
|
+
e7:4f:9d:cd:e4:6b:22:e4:3b:54:2f:e2:e8:0c:df:
|
45
|
+
6f:14:f8:74:4c:21:15:28:2c:51:5e:c8:8c:86:8e:
|
46
|
+
e0:5e:0e:2d:e1:25:cc:47:8c:9e:b5:94:bb:34:e4:
|
47
|
+
43:b1:cd:55:2a:6f:1f:14:fa:c2:2f:3c:a1:ba:65:
|
48
|
+
f5:09:8d:1c:20:12:0d:80:33:35:f7:2f:d1:8b:ca:
|
49
|
+
b8:77:f0:a3:7d:fa:bd:31:ba:3a:f4:c7:5e:8d:55:
|
50
|
+
a7:c9:69
|
51
51
|
Exponent: 65537 (0x10001)
|
52
52
|
X509v3 extensions:
|
53
53
|
X509v3 Key Usage: critical
|
@@ -57,12 +57,12 @@ Certificate:
|
|
57
57
|
X509v3 Basic Constraints: critical
|
58
58
|
CA:FALSE
|
59
59
|
X509v3 Subject Key Identifier:
|
60
|
-
|
60
|
+
B8:6F:A5:A0:D0:70:D7:5E:AE:1E:54:5A:F1:26:DA:DD:CB:2C:5E:6F
|
61
61
|
X509v3 Authority Key Identifier:
|
62
|
-
|
62
|
+
BB:BC:C3:47:A5:E4:BC:A9:C6:C3:A4:72:0C:10:8D:A2:35:E1:C8:E8
|
63
63
|
Authority Information Access:
|
64
|
-
OCSP - URI:http://
|
65
|
-
CA Issuers - URI:http://
|
64
|
+
OCSP - URI:http://r10.o.lencr.org
|
65
|
+
CA Issuers - URI:http://r10.i.lencr.org/
|
66
66
|
X509v3 Subject Alternative Name:
|
67
67
|
DNS:*.g6fyiaq.mesh.mongodb-dev.net, DNS:*.g6fyiaq.mongodb-dev.net
|
68
68
|
X509v3 Certificate Policies:
|
@@ -70,78 +70,78 @@ Certificate:
|
|
70
70
|
CT Precertificate SCTs:
|
71
71
|
Signed Certificate Timestamp:
|
72
72
|
Version : v1 (0x0)
|
73
|
-
Log ID :
|
74
|
-
|
75
|
-
Timestamp :
|
73
|
+
Log ID : 76:FF:88:3F:0A:B6:FB:95:51:C2:61:CC:F5:87:BA:34:
|
74
|
+
B4:A4:CD:BB:29:DC:68:42:0A:9F:E6:67:4C:5A:3A:74
|
75
|
+
Timestamp : Aug 20 14:03:34.519 2024 GMT
|
76
76
|
Extensions: none
|
77
77
|
Signature : ecdsa-with-SHA256
|
78
|
-
30:
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
78
|
+
30:46:02:21:00:C6:92:47:D8:40:3A:B9:0C:BD:FC:45:
|
79
|
+
3E:C6:28:06:80:62:0F:4A:EF:44:56:5F:8C:16:DF:C6:
|
80
|
+
A4:0E:4C:76:DD:02:21:00:CA:36:0F:54:6B:84:37:F3:
|
81
|
+
AD:50:5B:E8:DD:3D:D2:EA:34:82:72:50:D2:2C:2A:47:
|
82
|
+
FB:EC:16:76:5A:E8:9E:0C
|
83
83
|
Signed Certificate Timestamp:
|
84
84
|
Version : v1 (0x0)
|
85
|
-
Log ID :
|
86
|
-
|
87
|
-
Timestamp :
|
85
|
+
Log ID : DF:E1:56:EB:AA:05:AF:B5:9C:0F:86:71:8D:A8:C0:32:
|
86
|
+
4E:AE:56:D9:6E:A7:F5:A5:6A:01:D1:C1:3B:BE:52:5C
|
87
|
+
Timestamp : Aug 20 14:03:34.658 2024 GMT
|
88
88
|
Extensions: none
|
89
89
|
Signature : ecdsa-with-SHA256
|
90
|
-
30:
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
90
|
+
30:45:02:20:23:5B:E1:35:10:78:F9:99:9F:42:7F:FE:
|
91
|
+
73:F4:74:1B:55:3D:B9:93:C9:A8:EE:E7:B2:61:52:12:
|
92
|
+
D1:C9:06:0C:02:21:00:87:EA:87:A3:3A:B2:C6:F0:EA:
|
93
|
+
52:5A:B2:7F:02:2E:CF:68:C8:A5:CB:54:0F:CB:CE:6A:
|
94
|
+
CC:E0:3A:D1:09:D3:9C
|
95
95
|
Signature Algorithm: sha256WithRSAEncryption
|
96
96
|
Signature Value:
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
97
|
+
1d:11:b5:c6:7e:71:6c:63:34:8e:d4:eb:e6:42:ca:ce:fd:0d:
|
98
|
+
9a:7d:ea:49:43:8d:de:46:ad:27:09:a6:a7:5c:58:89:2f:47:
|
99
|
+
03:68:e2:19:0f:f6:76:be:47:0a:b6:d1:ed:5d:71:13:2a:12:
|
100
|
+
de:5e:41:cf:e1:a3:2c:46:07:81:da:b1:86:66:61:b0:0b:70:
|
101
|
+
19:33:4c:a3:29:e4:e6:79:f6:3f:1b:4a:51:6a:2a:0c:c1:07:
|
102
|
+
2c:db:cc:9a:3f:17:a2:ff:ac:19:76:9e:a2:d4:9b:c9:c2:75:
|
103
|
+
48:5c:fd:d4:5e:ff:cc:6b:f0:ea:73:da:0b:f8:fd:c5:92:42:
|
104
|
+
ca:ca:43:51:98:e5:4b:77:b6:0f:da:d2:83:33:77:bc:60:5c:
|
105
|
+
b7:60:12:42:10:78:5b:ed:cd:83:42:63:ba:96:de:0e:d8:9e:
|
106
|
+
a5:97:6a:6f:70:82:7c:82:2c:ca:e3:a3:34:61:7a:70:d1:03:
|
107
|
+
fc:89:06:1e:b4:f3:ed:b4:64:5f:54:b8:d5:6e:31:e0:fa:0b:
|
108
|
+
f6:be:b7:6c:38:78:f8:bb:22:f2:7c:6b:44:54:3e:91:3a:8c:
|
109
|
+
bd:4d:1b:b5:8a:a6:df:17:9b:cf:3a:bd:dc:c3:1e:c5:2c:f5:
|
110
|
+
19:32:75:0f:7b:54:30:ab:bb:7e:db:43:fb:ed:16:d9:03:81:
|
111
|
+
23:8a:8c:7a
|
112
112
|
|
113
113
|
-----BEGIN CERTIFICATE-----
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
114
|
+
MIIGIzCCBQugAwIBAgISA5JCReZ6ohOE6nx+ztpu1GNnMA0GCSqGSIb3DQEBCwUA
|
115
|
+
MDMxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQwwCgYDVQQD
|
116
|
+
EwNSMTAwHhcNMjQwODIwMTMwNTA0WhcNMjQxMTE4MTMwNTAzWjAkMSIwIAYDVQQD
|
117
|
+
DBkqLmc2ZnlpYXEubW9uZ29kYi1kZXYubmV0MIICIjANBgkqhkiG9w0BAQEFAAOC
|
118
|
+
Ag8AMIICCgKCAgEAwv/gCffRMEfmocGSwrrP3iyGLjQ6Y/RaqUUliUfrROj7Tg2s
|
119
|
+
mV34QnQHpZW6gYuf8WTwN07n9lnDOghbglXN6oGUtufsethrCUFAQC8ntA4J2GGC
|
120
|
+
3LNDW1BdA3gI7TVS5jqbrd5Pc7NWLyUN5wthg+g1/nOJ4w7LfcEpANTiqMKcXLD9
|
121
|
+
Tb4ahqd/s9PZOzVMgrONVQqbd0Cw3bHmkfSR3FDulpLMrxG7QwqkK1oAq5wXouG/
|
122
|
+
fJ6SBAGPvxZfhZzkXDeX/ylQGNcBZsW8URGsiqPeWF0cROT0/neDmT9XcS0ulQfM
|
123
|
+
eLg8UEvqyqgg6JsFkVxAuqnDh9WV16tnMwMducbX7zpOqn2BvBtS+w60fM6e/9gI
|
124
|
+
KzPuttNcfBp+o8/NkkJ/G6Q2C9lROcbLwWXB4oRTMLou8cMHcQlp3f+SFiwFHWAo
|
125
|
+
HK9edoif3+eX+80ZSHqH9iTg4eH/dpWTZXJEKV5pXS0mLPunBmP/fwIpgmFC2ZoL
|
126
|
+
ROqJyLxKdRdYBYUEYh9wvXlmtrsnpojIJ9tB2ojsTnEKIObjeSruta+ZlnKdysPn
|
127
|
+
T53N5Gsi5DtUL+LoDN9vFPh0TCEVKCxRXsiMho7gXg4t4SXMR4yetZS7NORDsc1V
|
128
|
+
Km8fFPrCLzyhumX1CY0cIBINgDM19y/Ri8q4d/Cjffq9Mbo69MdejVWnyWkCAwEA
|
129
|
+
AaOCAj4wggI6MA4GA1UdDwEB/wQEAwIFoDAdBgNVHSUEFjAUBggrBgEFBQcDAQYI
|
130
|
+
KwYBBQUHAwIwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQUuG+loNBw116uHlRa8Sba
|
131
|
+
3cssXm8wHwYDVR0jBBgwFoAUu7zDR6XkvKnGw6RyDBCNojXhyOgwVwYIKwYBBQUH
|
132
|
+
AQEESzBJMCIGCCsGAQUFBzABhhZodHRwOi8vcjEwLm8ubGVuY3Iub3JnMCMGCCsG
|
133
|
+
AQUFBzAChhdodHRwOi8vcjEwLmkubGVuY3Iub3JnLzBEBgNVHREEPTA7gh4qLmc2
|
134
|
+
ZnlpYXEubWVzaC5tb25nb2RiLWRldi5uZXSCGSouZzZmeWlhcS5tb25nb2RiLWRl
|
135
|
+
di5uZXQwEwYDVR0gBAwwCjAIBgZngQwBAgEwggEFBgorBgEEAdZ5AgQCBIH2BIHz
|
136
|
+
APEAdwB2/4g/Crb7lVHCYcz1h7o0tKTNuyncaEIKn+ZnTFo6dAAAAZFwGaT3AAAE
|
137
|
+
AwBIMEYCIQDGkkfYQDq5DL38RT7GKAaAYg9K70RWX4wW38akDkx23QIhAMo2D1Rr
|
138
|
+
hDfzrVBb6N090uo0gnJQ0iwqR/vsFnZa6J4MAHYA3+FW66oFr7WcD4ZxjajAMk6u
|
139
|
+
Vtlup/WlagHRwTu+UlwAAAGRcBmlggAABAMARzBFAiAjW+E1EHj5mZ9Cf/5z9HQb
|
140
|
+
VT25k8mo7ueyYVIS0ckGDAIhAIfqh6M6ssbw6lJasn8CLs9oyKXLVA/LzmrM4DrR
|
141
|
+
CdOcMA0GCSqGSIb3DQEBCwUAA4IBAQAdEbXGfnFsYzSO1OvmQsrO/Q2afepJQ43e
|
142
|
+
Rq0nCaanXFiJL0cDaOIZD/Z2vkcKttHtXXETKhLeXkHP4aMsRgeB2rGGZmGwC3AZ
|
143
|
+
M0yjKeTmefY/G0pRaioMwQcs28yaPxei/6wZdp6i1JvJwnVIXP3UXv/Ma/Dqc9oL
|
144
|
+
+P3FkkLKykNRmOVLd7YP2tKDM3e8YFy3YBJCEHhb7c2DQmO6lt4O2J6ll2pvcIJ8
|
145
|
+
gizK46M0YXpw0QP8iQYetPPttGRfVLjVbjHg+gv2vrdsOHj4uyLyfGtEVD6ROoy9
|
146
|
+
TRu1iqbfF5vPOr3cwx7FLPUZMnUPe1Qwq7t+20P77RbZA4Ejiox6
|
147
147
|
-----END CERTIFICATE-----
|
@@ -98,7 +98,7 @@ class ClusterTools
|
|
98
98
|
def step_down
|
99
99
|
admin_client.database.command(
|
100
100
|
replSetStepDown: 4, secondaryCatchUpPeriodSecs: 2)
|
101
|
-
rescue Mongo::Error::OperationFailure => e
|
101
|
+
rescue Mongo::Error::OperationFailure::Family => e
|
102
102
|
# While waiting for secondaries to catch up before stepping down, this node decided to step down for other reasons (189)
|
103
103
|
if e.code == 189
|
104
104
|
# success
|
@@ -118,7 +118,7 @@ class ClusterTools
|
|
118
118
|
begin
|
119
119
|
client.database.command(replSetStepUp: 1)
|
120
120
|
break
|
121
|
-
rescue Mongo::Error::OperationFailure => e
|
121
|
+
rescue Mongo::Error::OperationFailure::Family => e
|
122
122
|
# Election failed. (125)
|
123
123
|
if e.code == 125
|
124
124
|
# Possible reason is the node we are trying to elect has deny-listed
|
@@ -261,7 +261,7 @@ class ClusterTools
|
|
261
261
|
def unfreeze_server(address)
|
262
262
|
begin
|
263
263
|
direct_client(address).use('admin').database.command(replSetFreeze: 0)
|
264
|
-
rescue Mongo::Error::OperationFailure => e
|
264
|
+
rescue Mongo::Error::OperationFailure::Family => e
|
265
265
|
# Mongo::Error::OperationFailure: cannot freeze node when primary or running for election. state: Primary (95)
|
266
266
|
if e.code == 95
|
267
267
|
# The server we want to become primary may have already become the
|
@@ -176,7 +176,7 @@ module CommonShortcuts
|
|
176
176
|
ClientRegistry.instance.global_client('root_authorized').command(killAllSessions: [])
|
177
177
|
# killAllSessions also kills the implicit session which the driver uses
|
178
178
|
# to send this command, as a result it always fails
|
179
|
-
rescue Mongo::Error::OperationFailure => e
|
179
|
+
rescue Mongo::Error::OperationFailure::Family => e
|
180
180
|
# "operation was interrupted"
|
181
181
|
unless e.code == 11601
|
182
182
|
raise
|
@@ -396,7 +396,7 @@ module CommonShortcuts
|
|
396
396
|
client.start_session(snapshot: true) do |session|
|
397
397
|
client[collection].aggregate([{'$match': {any: true}}], session: session).to_a
|
398
398
|
end
|
399
|
-
rescue Mongo::Error::OperationFailure => e
|
399
|
+
rescue Mongo::Error::OperationFailure::Family => e
|
400
400
|
# Retry them as the server demands...
|
401
401
|
if e.code == 246 # SnapshotUnavailable
|
402
402
|
if Mongo::Utils.monotonic_time < start_time + 10
|