You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/vcr.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ The naming strategy
22
22
*******************
23
23
24
24
The naming strategy turn a request into a deterministic and unique identifier.
25
-
The identifier must be safe to use with a filesystem.
25
+
The identifier must be safe to use with a file system.
26
26
The plugin provide a default naming strategy, the ``PathNamingStrategy``. You can define two options:
27
27
28
28
* **hash_headers**: the list of header(s) that make the request unique (Ex: 'Authorization'). The name & content of the header will be hashed to generate a unique signature. By default no header is used.
@@ -38,7 +38,7 @@ The recorder
38
38
39
39
The recorder records and replays responses. The plugin provides two recorders:
40
40
41
-
* ``FilesystemRecorder``: Saves the response on your filesystem using Symfony's `filesystem component`_ and `Guzzle PSR7`_ library.
41
+
* ``FilesystemRecorder``: Saves the response on your file system using Symfony's `filesystem component`_ and `Guzzle PSR7`_ library.
42
42
* ``InMemoryRecorder``: Saves the response in memory. **Response will be lost at the end of the running process**
43
43
44
44
To create your own recorder, you need to create a class implementing the following interfaces:
0 commit comments