summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrian Samek <brian.samek@mongodb.com>2022-11-18 13:35:50 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-11-18 14:05:24 +0000
commit0cc9b3c18908e59e630ff70eb1458b47174763d5 (patch)
tree9c0984acc43871ad777fb8244e49c61245abb24b /docs
parent35c1d35f4870510bc0923e3db49eb026dcf93f32 (diff)
downloadmongo-0cc9b3c18908e59e630ff70eb1458b47174763d5.tar.gz
SERVER-71468 Change absolute to relative references in docs
Diffstat (limited to 'docs')
-rw-r--r--docs/testing/fsm_concurrency_testing_framework.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/testing/fsm_concurrency_testing_framework.md b/docs/testing/fsm_concurrency_testing_framework.md
index f65f5e0b3ea..c8dd4b0d290 100644
--- a/docs/testing/fsm_concurrency_testing_framework.md
+++ b/docs/testing/fsm_concurrency_testing_framework.md
@@ -19,7 +19,7 @@ has reached the number of iterations defined by the workload. Once all the
worker threads have finished, the runner executes the workload's teardown
function.
-![fsm.png](/docs/images/testing/fsm.png)
+![fsm.png](../images/testing/fsm.png)
The runner provides three modes of execution for workloads: serial, parallel,
and composed. Serial mode runs the provided workloads one after the other,
@@ -338,7 +338,7 @@ above. Setup is run single threaded, data is copied into multiple threads where
the states are executed, and once all the threads have finished a teardown
function is run and the runner moves onto the next workload.
-![fsm_serial_example.png](/docs/images/testing/fsm_serial_example.png)
+![fsm_serial_example.png](../images/testing/fsm_serial_example.png)
#### Parallel (Simultaneous)
@@ -347,7 +347,7 @@ inconsistent), the ordering becomes a little different. All workloads have their
setup functions run, then threads are spawned for each workload, and once they
all complete, all threads have their teardown function run.
-![fsm_simultaneous_example.png](/docs/images/testing/fsm_simultaneous_example.png)
+![fsm_simultaneous_example.png](../images/testing/fsm_simultaneous_example.png)
#### Composed
@@ -364,7 +364,7 @@ the second step becomes choosing a state from all the other workloads with equal
probability. For a walkthrough of this process, see the slides under "Other
Resources".
-![fsm_composed_example.png](/docs/images/testing/fsm_composed_example.png)
+![fsm_composed_example.png](../images/testing/fsm_composed_example.png)
### Existing runners