Skip to content

Commit

Permalink
Put user provided id in apostrophes
Browse files Browse the repository at this point in the history
It's a tiny change, but it makes it much clearer that OBS wasn't able to
fetch the id.

Before:

<status code="invalid_request">
  <summary>Could not assign requests  to home:Admin:Staging:A.</summary>
</status>

After:

<status code="invalid_request">
  <summary>Could not assign requests '' to home:Admin:Staging:A.</summary>
</status>
  • Loading branch information
bgeuken committed Nov 20, 2018
1 parent bcbb707 commit 7b615c1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def create
render_error(
status: 400,
errorcode: 'invalid_request',
message: "Could not assign requests #{unassigned_requests.to_sentence} to #{@staging_project}."
message: "Could not assign requests '#{unassigned_requests.to_sentence}' to #{@staging_project}."
)
end
end
Expand Down

0 comments on commit 7b615c1

Please sign in to comment.