Bug 1102489 - m-i and fx-team test logs are being uploaded to ftp.mozilla.org/pub/mozilla.org/firefox/nightly/2014/11/, r=catlee
--- a/mozharness/mozilla/building/buildbase.py
+++ b/mozharness/mozilla/building/buildbase.py
@@ -1505,19 +1505,20 @@ or run without that action (ie: --no-{ac
pgo_build = c.get('pgo_build', False) or self._compile_against_pgo()
# these cmds are sent to mach through env vars. We won't know the
# packageUrl or testsUrl until mach runs upload target so we let mach
# fill in the rest of the cmd
sendchange_props = {
'buildid': self.query_buildid(),
'builduid': self.query_builduid(),
- 'nightly_build': self.query_is_nightly(),
'pgo_build': pgo_build,
}
+ if self.query_is_nightly():
+ sendchange_props['nightly_build'] = True
if test_type == 'talos':
if pgo_build:
build_type = 'pgo-'
else: # we don't do talos sendchange for debug so no need to check
build_type = '' # leave 'opt' out of branch for talos
talos_branch = "%s-%s-%s%s" % (self.branch,
self.stage_platform,
build_type,