Skip to content

Instantly share code, notes, and snippets.

@maurodoglio
Created June 17, 2014 18:04
Show Gist options
  • Save maurodoglio/e5fad0a5424387988d50 to your computer and use it in GitHub Desktop.
Save maurodoglio/e5fad0a5424387988d50 to your computer and use it in GitHub Desktop.
Job completed event
from django.conf import settings
from treeherder.events.publisher import JobStatusPublisher
p = JobStatusPublisher(settings.BROKER_URL)
p.publish(
1,# job_id
1,# resultset_id
'mozilla-inbound', # repo
'completed' # status
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment