We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2926d84 commit 1d5222bCopy full SHA for 1d5222b
app.py
@@ -533,8 +533,8 @@ def test_backup_with_context():
533
else:
534
return f"Repository {repository.id} not found or inactive"
535
except Exception as e:
536
- logger.error(f"Error in test backup for repository {repository.id}: {e}")
537
- return f"Error: {str(e)}"
+ logger.error(f"Error in test backup for repository {repository.id}: {e}", exc_info=True)
+ return "An internal error occurred during the backup operation."
538
539
try:
540
result = test_backup_with_context()
0 commit comments