You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
I have to add options like --ssl and --ssl-no-reuse, I tried to write into the config file the following:
httperf_ssl (doesn't see it)
httperf_ssl = (httperf: option '--ssl' doesn't allow an argument)
httperf_ssl = nil (httperf: option '--ssl' doesn't allow an argument)
httperf_ssl = "nil" (httperf: option '--ssl' doesn't allow an argument)
I don't know if I'm doing something wrong...
I've never used ruby before but the httperf.rb line
'''
httperf_opt = conf.keys.grep(/httperf/).collect {|k| conf[k] == "nil" ? "--#{k.gsub(/httperf_/, '')}" : "--#{k.gsub(/httperf_/, '')}=#{conf[k]}"}.join(" ")
'''
looks fine to me, maybe it's something into the mp_perf.rb parsing function
The text was updated successfully, but these errors were encountered:
I have to add options like --ssl and --ssl-no-reuse, I tried to write into the config file the following:
httperf_ssl (doesn't see it)
httperf_ssl = (httperf: option '--ssl' doesn't allow an argument)
httperf_ssl = nil (httperf: option '--ssl' doesn't allow an argument)
httperf_ssl = "nil" (httperf: option '--ssl' doesn't allow an argument)
I don't know if I'm doing something wrong...
I've never used ruby before but the httperf.rb line
'''
httperf_opt = conf.keys.grep(/httperf/).collect {|k| conf[k] == "nil" ? "--#{k.gsub(/httperf_/, '')}" : "--#{k.gsub(/httperf_/, '')}=#{conf[k]}"}.join(" ")
'''
looks fine to me, maybe it's something into the mp_perf.rb parsing function
The text was updated successfully, but these errors were encountered: