3cedc29788b1471f33f8987f168f5d050ebc23f6,perfkitbenchmarker/vm_util.py,,SSHKeyGen,#,105
Before Change
"-q",
"-f",
PrependTempDir(PRIVATE_KEYFILE)]
shell_value = True if os.name == WINDOWS else False
create_process = subprocess.Popen(create_cmd,
shell=shell_value,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
After Change
"-q",
"-f",
PrependTempDir(PRIVATE_KEYFILE)]
shell_value = RunningOnWindows()
create_process = subprocess.Popen(create_cmd,
shell=shell_value,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances
Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: 3cedc29788b1471f33f8987f168f5d050ebc23f6
Time: 2015-05-27
Author: ehankland@google.com
File Name: perfkitbenchmarker/vm_util.py
Class Name:
Method Name: SSHKeyGen
Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: 3cedc29788b1471f33f8987f168f5d050ebc23f6
Time: 2015-05-27
Author: ehankland@google.com
File Name: perfkitbenchmarker/vm_util.py
Class Name:
Method Name: IssueCommand
Project Name: GoogleCloudPlatform/PerfKitBenchmarker
Commit Name: 3cedc29788b1471f33f8987f168f5d050ebc23f6
Time: 2015-05-27
Author: ehankland@google.com
File Name: perfkitbenchmarker/vm_util.py
Class Name:
Method Name: IssueBackgroundCommand