You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A successful export in the client yields an error message in the export dialog. This is a recent change.
Steps to Reproduce
Run the client from a point after these changes were merged, then attempt an export. Observe logs on sd-devices.
Expected Behavior
Successful export, no errors in sd-devices logs, and confirmation message in client export dialog.
Actual Behavior
Successful export, no errors in sd-devices logs, followed by "UNEXPECTED_RETURN_STATUS" error message in export dialog:
Comments
Because a successful export currently/historically returns no status value, the changes linked above mean that the client attempts to initialize an ExportStatus enum from the empty string, yielding a ValueError.
Currently/historically, print, disk and printer-test all return without a status when they are successful (documentation) This will change with the rewrite to sd-export so that behaviour is consistent, but for now, backwards compatibility is required.
The text was updated successfully, but these errors were encountered:
Description
A successful export in the client yields an error message in the export dialog. This is a recent change.
Steps to Reproduce
Run the client from a point after these changes were merged, then attempt an export. Observe logs on sd-devices.
Expected Behavior
Successful export, no errors in sd-devices logs, and confirmation message in client export dialog.
Actual Behavior
Successful export, no errors in sd-devices logs, followed by "UNEXPECTED_RETURN_STATUS" error message in export dialog:
Comments
Because a successful export currently/historically returns no status value, the changes linked above mean that the client attempts to initialize an ExportStatus enum from the empty string, yielding a ValueError.
Currently/historically,
print
,disk
andprinter-test
all return without a status when they are successful (documentation) This will change with the rewrite to sd-export so that behaviour is consistent, but for now, backwards compatibility is required.The text was updated successfully, but these errors were encountered: