From f06fed32b8d425450ea8d0f6c3d04d13e4ae1359 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Wed, 1 Jul 2015 17:48:43 +0300 Subject: [PATCH] Fix build ID key on build queued event --- endpoints/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints/building.py b/endpoints/building.py index 7af6fcd53..e9153babf 100644 --- a/endpoints/building.py +++ b/endpoints/building.py @@ -49,7 +49,7 @@ def start_build(repository, prepared_build, pull_robot_name=None): # Add the build to the repo's log and spawn the build_queued notification. event_log_metadata = { - 'build_uuid': build_request.uuid, + 'build_id': build_request.uuid, 'docker_tags': prepared_build.tags, 'repo': repository.name, 'namespace': repository.namespace_user.username,