Rename effective_options to effectiveOptions.

This commit is contained in:
Miao Jiang 2012-11-29 17:04:28 +08:00
parent 368cc3402b
commit 51dfa0ebdf

View file

@ -29,7 +29,7 @@ requests.forEach(function(request) {
curl = Curl.create(defaultOptions);
print('GET ' + url, 'green')
curl(url, options, function(err) {
print('GET ' + this.url + ' ' + JSON.stringify(this.effective_options) + " finished.", 'green');
print('GET ' + this.url + ' ' + JSON.stringify(this.effectiveOptions) + " finished.", 'green');
if (err)
return print(err, 'red');