Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
fix(controller): remove tag from source_image
Browse files Browse the repository at this point in the history
the registry module will take care of that
  • Loading branch information
Matthew Fisher committed Jul 21, 2014
1 parent bf6c249 commit 182a990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller/api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ def new(self, user, config=None, build=None, summary=None, source_version='lates
# so shell out a task to pull in the repository
tasks.import_repository.delay(build.image, self.app.id).get()
# update the source image to the repository we just imported
source_image = '{}:{}'.format(self.app.id, 'latest')
source_image = self.app.id
publish_release(source_image,
config.values,
release_image,)
Expand Down

0 comments on commit 182a990

Please sign in to comment.