Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #191 from vania-pooh/master
Browse files Browse the repository at this point in the history
Fixed CM video-recorder arg
  • Loading branch information
vania-pooh authored Oct 6, 2018
2 parents ca053a9 + 01fdc6f commit 609ecbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion selenoid/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ func (c *DockerConfigurator) Start() error {
cmd = append(cmd, "-conf", "/etc/selenoid/browsers.json")
}
if !contains(cmd, "-video-output-dir") && isVideoRecordingSupported(c.Logger, c.Version) {
cmd = append(cmd, "-video-output-dir", "/opt/selenoid/video/")
cmd = append(cmd, "-video-output-dir", "/opt/selenoid/video/", "-video-recorder-image", videoRecorderImage)
}

if !contains(cmd, "-log-output-dir") && isLogSavingSupported(c.Logger, c.Version) {
Expand Down

0 comments on commit 609ecbe

Please sign in to comment.