Skip to content

Commit

Permalink
Revert "Bug 1159782 - fix Job ingestion error"
Browse files Browse the repository at this point in the history
This reverts commit 77fae37.
  • Loading branch information
Ed Morley committed May 3, 2015
1 parent c9f837f commit 765ecbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion treeherder/etl/th_publisher.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def post_treeherder_collections(th_collections):
th_request.get_uri(th_collections[project].endpoint_base)))
response = th_request.post(th_collections[project])

if not response or response.status != 200:
if not response or response.status == 200:
errors.append({
"project": project,
"url": th_collections[project].endpoint_base,
Expand Down

0 comments on commit 765ecbe

Please sign in to comment.