Skip to content

Commit 6b300d7

Browse files
committed
Fix mongo_crypt_v1.so name
1 parent 04075c6 commit 6b300d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/encryption.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,15 +164,15 @@ If the driver is not able to find the library, you can specify its path using th
164164
default:
165165
autoEncryption:
166166
extraOptions:
167-
cryptSharedLibPath: '%kernel.project_dir%/bin/libmongocrypt.so'
167+
cryptSharedLibPath: '%kernel.project_dir%/bin/mongo_crypt_v1.so'
168168
169169
.. group-tab:: XML
170170

171171
.. code-block:: xml
172172
173173
<doctrine:connection>
174174
<doctrine:autoEncryption>
175-
<doctrine:extraOptions cryptSharedLibPath="%kernel.project_dir%/bin/libmongocrypt.so" />
175+
<doctrine:extraOptions cryptSharedLibPath="%kernel.project_dir%/bin/mongo_crypt_v1.so" />
176176
</doctrine:autoEncryption>
177177
</doctrine:connection>
178178
@@ -186,7 +186,7 @@ If the driver is not able to find the library, you can specify its path using th
186186
$config->connection('default')
187187
->autoEncryption([
188188
'extraOptions' => [
189-
'cryptSharedLibPath' => '%kernel.project_dir%/bin/libmongocrypt.so',
189+
'cryptSharedLibPath' => '%kernel.project_dir%/bin/mongo_crypt_v1.so',
190190
],
191191
]);
192192
};

0 commit comments

Comments
 (0)