Skip to content

Commit

Permalink
fix ticket 2320. P4Poller was not propagating the PATH from the user …
Browse files Browse the repository at this point in the history
…who starts the buildbot master. PATH has been added to the short list of environment variables propagated when calling p4 to get changes
  • Loading branch information
bdbaddog committed Apr 5, 2013
1 parent a8befb3 commit 17c00be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/changes/p4poller.py
Expand Up @@ -49,7 +49,7 @@ class P4Source(base.PollingChangeSource, util.ComparableMixin):
"p4bin", "pollInterval"]

env_vars = ["P4CLIENT", "P4PORT", "P4PASSWD", "P4USER",
"P4CHARSET"]
"P4CHARSET" , "PATH"]

changes_line_re = re.compile(
r"Change (?P<num>\d+) on \S+ by \S+@\S+ '.*'$")
Expand Down

0 comments on commit 17c00be

Please sign in to comment.