From 7d1dbb6323493cd07cfa0f7cf95f48ad1a29619c Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Tue, 21 May 2024 09:44:19 -0400 Subject: [PATCH] Add assessment --- assessment.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 assessment.md diff --git a/assessment.md b/assessment.md new file mode 100644 index 0000000..2e18cf6 --- /dev/null +++ b/assessment.md @@ -0,0 +1,22 @@ +# Server Lab Assessment + +Pat, + +Nice work! Everything looks good. I see in your commit message that you +were trying to handle exceptions properly, but unfortunately this is a +problem with Banjo's API views. For example, if you run: + + $ http get http://127.0.0.1:5000/couplets/rhyme word=neverly + +You'll get back a 400 error, as expected. The API view doesn't handle +the exception like it should: + + $ http get http://127.0.0.1:5000/api/couplets/rhyme word=neverly + +And returns a 500 error. I'll fix this in the next release--sorry if +it caused you some difficulty. + +Your responses to questions in `notes.md` are thoughtful--I agree with +everything :) + +Chris