Skip to content

Commit

Permalink
Merge pull request nuxeo#70 from mozilla-services/workaround
Browse files Browse the repository at this point in the history
workaround for pypa/virtualenv#330
  • Loading branch information
bdelbosc committed Sep 18, 2012
2 parents 55bca9d + 06c3dbd commit 57d8ec2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/funkload/Distributed.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,10 @@ def local_prep_worker(worker):
cwdir=remote_res_dir)
worker.execute("rm %s" % remote_tarball)

# workaround for https://github.com/pypa/virtualenv/issues/330
worker.execute("rm lib64", cwdir=virtual_env)
worker.execute("ln -s lib lib64", cwdir=virtual_env)

threads = []
trace("* Preparing sandboxes for %d workers." % len(self._workers))
for worker in list(self._workers):
Expand Down

0 comments on commit 57d8ec2

Please sign in to comment.