Skip to content

Commit

Permalink
Merge pull request #2 from tumugi/fix-unused-arguments
Browse files Browse the repository at this point in the history
Fix unused arguments
  • Loading branch information
hakobera committed May 16, 2016
2 parents 73df111 + dae4a28 commit a26360e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tumugi/plugin/bigquery/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def patch_dataset(dataset_id, project_id: nil,
end

def tables(dataset_id, project_id: nil, limit: 1000, &blk)
@client.tables(dataset_id, project_id: project_id || @project_id, limit: 1000, &blk)
@client.tables(dataset_id, project_id: project_id || @project_id, limit: limit, &blk)
rescue Kura::ApiError => e
process_error(e)
end
Expand Down Expand Up @@ -207,7 +207,7 @@ def load(dataset_id, table_id, source_uris=nil,
job_project_id: project_id || @project_id,
job_id: job_id,
file: file, wait: wait,
dry_run: false,
dry_run: dry_run,
&blk)
rescue Kura::ApiError => e
process_error(e)
Expand Down

0 comments on commit a26360e

Please sign in to comment.