Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
- Allow saved searches to begin on a set id
- Add *~ to gitignore
  • Loading branch information
JamesChristie committed Dec 23, 2013
1 parent 9c8e2d4 commit 8534dab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pkg
#tmtags

# For emacs:
#*~
*~
#\#*
#.\#*

Expand Down
2 changes: 1 addition & 1 deletion lib/netsuite-rest-client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def get_saved_search(record_type, search_id, options={})
'operation' => 'SAVED',
'record_type' => record_type,
'search_id' => search_id,
'start_id' => 0 }
'start_id' => options.fetch(:start_id, 0) }

batch_size = options[:search_batch_size] || @search_batch_size
if batch_size.to_i % 1000 == 0
Expand Down

0 comments on commit 8534dab

Please sign in to comment.