projects
/
working
/
NCIPServer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f67dec8
)
Fix lookupuser problem reporting in Evergreen driver.
author
Jason Stephenson
<jason@sigio.com>
Sun, 24 Aug 2014 02:25:08 +0000
(22:25 -0400)
committer
Jason Stephenson
<jason@sigio.com>
Sun, 24 Aug 2014 02:25:08 +0000
(22:25 -0400)
Actually set the response object's problem member if we fail to
look up the user.
Signed-off-by: Jason Stephenson <jason@sigio.com>
lib/NCIP/ILS/Evergreen.pm
patch
|
blob
|
history
diff --git
a/lib/NCIP/ILS/Evergreen.pm
b/lib/NCIP/ILS/Evergreen.pm
index
158ec5f
..
4fb15e8
100644
(file)
--- a/
lib/NCIP/ILS/Evergreen.pm
+++ b/
lib/NCIP/ILS/Evergreen.pm
@@
-142,6
+142,7
@@
sub lookupuser {
$problem->ProblemDetail("User with barcode $barcode unknown");
$problem->ProblemElement('AuthenticationInputData');
$problem->ProblemValue($barcode);
+ $response->problem($problem);
return $response;
}