-
Notifications
You must be signed in to change notification settings - Fork 48
Description
Proposal
4a1beca introduced breaking change, as it does not preserve directories mappings and responses.
Working configuration in 1.9.0 does not work in 1.9.1
mappings:
get_speed_mapping.json: |
{
"request": {
"method": "GET",
"url": "/v1/speed"
},
"response":{
"status":200,
"bodyFileName":"responses/get_speed_response.json",
"headers":{
"Content-Type":"application/json"
}
}
}
Reproduction steps
cp -rfv /data/responses /home/wiremock/storage/__files
'/data/responses/..2026_01_13_13_37_34.2449299101/get_speed_response.json' -> '/home/wiremock/storage/__files/responses/..2026_01_13_13_37_34.2449299101/get_speed_response.json'
'/data/responses/..2026_01_13_13_37_34.2449299101/response_1.json' -> '/home/wiremock/storage/__files/responses/..2026_01_13_13_37_34.2449299101/response_1.json'
'/data/responses/..2026_01_13_13_37_34.2449299101' -> '/home/wiremock/storage/__files/responses/..2026_01_13_13_37_34.2449299101'
'/data/responses/..data' -> '/home/wiremock/storage/__files/responses/..data'
'/data/responses/get_speed_response.json' -> '/home/wiremock/storage/__files/responses/get_speed_response.json'
'/data/responses/response_1.json' -> '/home/wiremock/storage/__files/responses/response_1.json'
'/data/responses' -> '/home/wiremock/storage/__files/responses'
find /data/responses -type f -name "*.json" -exec cp -v {} /home/wiremock/storage/__files/ ;
'/data/responses/..2026_01_13_13_37_34.2449299101/get_speed_response.json' -> '/home/wiremock/storage/__files/get_speed_response.json'
'/data/responses/..2026_01_13_13_37_34.2449299101/response_1.json' -> '/home/wiremock/storage/__files/response_1.json'
References
No response