Flamenco Worker - Update WRN msg when Blender isn't found by Worker to help end user on next-steps #104230
No reviewers
Labels
No Label
Good First Issue
Priority
High
Priority
Low
Priority
Normal
Status
Archived
Status
Confirmed
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Job Type
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: studio/flamenco#104230
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "michael-2/flamenco:msg_blender_not_found"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
End users tend to get stuck on the "WRN" and try to either re-install Blender or configure Flamenco Manager blender paths.
Enhancement to message is to still warn on this situation and help point the end user to some configuration documentation explaining how Flamenco Manager can pass the Blender path whenever a Task in a render Job is dispatched to the Worker.
Probably worth trying to add some more info or FAQ documentation on why Blender couldn't be found in another PR.
For reference: this PR has the same goal as #104224, and the discussions on that PR are also valid here.
@ -36,2 +38,3 @@
case errors.Is(err, fs.ErrNotExist), errors.Is(err, exec.ErrNotFound):
log.Warn().Msg("Blender could not be found, Flamenco Manager will have to supply a full path")
log.Warn().Msg("The Worker could not find Blender on this system. " + helpMsg)
Remove "The Worker" from the string. Everything logged by the worker is from the worker's perspective.
Thanks!