Skip to content

Commit 3c4c26e

Browse files
committed
Merge pull request #270 from helgi/bug_269
fix(scheduler): slug url was replacing : with -, which is not accurate
2 parents 3119035 + f41df57 commit 3c4c26e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rootfs/scheduler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ def _create_rc(self, name, image, command, **kwargs): # noqa
610610
if vcs == 'git' and len(sha) in [8, 40] and app_type == 'web':
611611
imgurl = 'http://{}/git/home/{}/push/slug.tgz'.format(
612612
settings.S3EP,
613-
image.replace(':', '-')
613+
image
614614
)
615615
TEMPLATE = RCB_TEMPLATE
616616

0 commit comments

Comments
 (0)