Where are scenes supposed to write to on disk?
Aarskin opened this issue · 2 comments
Aarskin commented
I've been noticing some non-static behavior that is throwing me off. Using the "golden flow" example in the readme, on Windows 10, I've seen my test1 file appear in the following locations
- Directly on C:\
- In \flashback-admin inside the repo
- Not appearing at all, but both startFlashback and shutDownFlashback respond with a 200 OK.
Why am I seeing it appear (or not appear) in different locations when I am following the same workflow?
This is the post body I am using to start Flashback:
{
"sceneMode": "record",
"sceneName": "test1",
"matchRule": "matchEntireRequest",
"scenePath": "/tmp",
"proxyHost": "localhost",
"proxyPort": "5555"
}
ben-oldcom commented
let me find a windows machine and give it a try.
gitcarter commented
@Aarskin For what it's worth, when I provide an absolute path as the scenePath
on Windows 10, it's consistent for me. The absolute path is also formatted as a Windows path as opposed to a *nix path.
Here's an example:
{
"sceneMode": "record",
"sceneName": "test1",
"matchRule": "matchEntireRequest",
"scenePath": "C:\\fl-data-output",
"proxyHost": "localhost",
"proxyPort": "5555"
}