Run this if you are still facing the same problem then restart the engine.
UnrealTraceServer.exe fork --sponsor-mode=0
Explanation:
When trying to run any trace from the editor, I got a pop-up saying
Failed to connect to the store client.
Running the UnrealTraceServer with fork didn’t work for me. I was greeted with this error:
Error: Deamon is configured to run in sponsored mode, but no sponsor pid has been specified.
Using the --help for fork command, UnrealTraceServer.exe fork --help
we can see the –sponsor-mode
argument
--sponsor-mode arg Set sponsor mode. Zero to disable, non-zero to
enable.
So, setting the mode to false and restarting the engine seems to fix it for me.
UnrealTraceServer.exe fork --sponsor-mode=0
To make sure it’s working, open the task manager and there should be something like this when Unreal is up and running.
For those who don’t know where to run the command, navigate to the Engine install directory then Binaries, then Win64
...\UE_5.5\Engine\Binaries\Win64
Then shift right click in any empty area and open CMD or Powershell whatever you have. If you opened powershell, type start cmd
then press enter to start the CMD in the same exact path and you can continue from there.