Skip to content

Commit

Permalink
Dont set project id twice (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjbanghart authored Nov 9, 2021
1 parent 5d0a05c commit 33b2705
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ static QueryResponse runSyncQuery(
qr.setMaxResults(maxResults);
}

return bigquery.jobs().query(querySql, qr).setProjectId(projectId).execute();
return bigquery.jobs().query(projectId, qr).execute();
}

/**
Expand Down

0 comments on commit 33b2705

Please sign in to comment.