Skip to content

Commit

Permalink
Set OPENAI_REMOTE_VERBOSE=0 in env to quiet remote container logs (op…
Browse files Browse the repository at this point in the history
…enai#185)

* Set OPENAI_REMOTE_VERBOSE=0 to disable container logging

* Support gym without configure (openai#162)

* Major surgery to avoid gym.Env.configure

* track flashgames

* Forward configure through Timer-Render-Throttle

Logger now takes print_frequency in constructor

* More configure fixes. py.test passes locally

* Upgrade to gym 0.8

* Require 0.8.1

* configure bugfixes

* Record env metadata & spec. Use semantics.async instead of spec.vnc

* Bump tox version of gym for travis

* Fix race condition when recording from multiple threads on non-async envs

* sub-bump

* Bump

* openai#15 Update main readme to assist Windows users with getting started (openai#169)

* Install pytest in the docker image, and clean up and python cache files

* openai#15 Update main readme to assist Windows users with getting started

* openai#15 Update main readme to assist Windows users with getting started

* openai#15 Update main readme to assist Windows users with getting started

* openai#15 Update main readme to assist Windows users with getting started

* Fixes openai#171

Travis didn’t catch this. Perhaps we should test with `pip install` and
not  just copy the directory.
  • Loading branch information
tlbtlbtlb authored May 18, 2017
1 parent 3209769 commit f95a5fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion universe/remotes/docker_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ def _start(self):
self.instances = [DockerInstance(self._assigner, self.runtime, label=str(i)) for i in range(self._n)]

[instance.start() for instance in self.instances]
self.start_logging(self.instances)
if int(os.environ.get('OPENAI_REMOTE_VERBOSE', '1')) > 0:
self.start_logging(self.instances)
self.healthcheck(self.instances)

def close(self):
Expand Down

0 comments on commit f95a5fe

Please sign in to comment.