Skip to content

Commit

Permalink
Make 408's not result in orphan mitigation
Browse files Browse the repository at this point in the history
Signed-off-by: Doug Davis <dug@us.ibm.com>
  • Loading branch information
Doug Davis committed Feb 18, 2018
1 parent 6983b33 commit b0d9ea1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -1430,7 +1430,7 @@ Platforms SHOULD initiate orphan mitigation in the following scenarios:
| 201 | Success | No |
| 201 with malformed response | Failure | Yes |
| All other 2xx | Failure | Yes |
| 408 | Timeout failure | Yes |
| 408 | Client timeout failure (request not received at the server) | No |
| All other 4xx | Request rejected | No |
| 5xx | Service Broker error | Yes |
| Timeout | Failure | Yes |
Expand Down
4 changes: 2 additions & 2 deletions tools/verify-tables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function checkForPunc() {
fi

# Anything less than 4 words we ignore
count=$(echo "$col" | wc -w)
count=$(echo "$col" | sed "s/(.*)//g" | wc -w)
if (( "$count" < 4 )); then
continue
fi
Expand All @@ -111,7 +111,7 @@ function checkForPunc() {
continue
fi

echo "$file - $1: column $colNum doesn't end with a '. |' or '? |' - watch for extra/missing spaces."
echo "$file - $1: column $colNum has more than 3 words and doesn't end with a '. |' or '? |' - watch for extra/missing spaces."

done
}
Expand Down

0 comments on commit b0d9ea1

Please sign in to comment.