Skip to content

Commit

Permalink
Wait for trace data to arrive before continuing (#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
surma authored and paulirish committed Jul 28, 2016
1 parent 8c39f91 commit df6e013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lighthouse-core/driver/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class Driver {
if (config.trace) {
pass = pass.then(_ => {
log.log('status', 'Gathering: trace');
driver.endTrace().then(traceContents => {
return driver.endTrace().then(traceContents => {
loadData.traceContents = traceContents;
log.log('statusEnd', 'Gathering: trace');
});
Expand Down

0 comments on commit df6e013

Please sign in to comment.