Skip to content

Commit

Permalink
Merge pull request #7304 from p12tic/fix-kubectl-wrong-settings
Browse files Browse the repository at this point in the history
worker: Work around bug in reactor.spawnProcess on Twisted 23.10
  • Loading branch information
p12tic committed Dec 21, 2023
2 parents 0f4406d + 95f979a commit a1592f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion master/buildbot/util/kubeclientservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,8 @@ def start_subprocess(self):
self.pp,
self.kube_ctl_proxy_cmd[0],
self.kube_ctl_proxy_cmd + ["-p", str(self.proxy_port)],
env=None)
env=os.environ
)
self.kube_proxy_output = yield self.pp.got_output_deferred

@defer.inlineCallbacks
Expand Down

0 comments on commit a1592f7

Please sign in to comment.