taps 0.3.20.pre1 → 0.3.20.pre2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -1
- data/lib/taps/operation.rb +1 -1
- metadata +1 -1
data/VERSION.yml
CHANGED
data/lib/taps/operation.rb
CHANGED
@@ -343,7 +343,7 @@ class Pull < Operation
|
|
343
343
|
retries = 0
|
344
344
|
max_retries = 10
|
345
345
|
begin
|
346
|
-
tables = JSON.
|
346
|
+
tables = JSON.parse(session_resource['pull/table_names'].get(http_headers).to_s)
|
347
347
|
rescue RestClient::Exception
|
348
348
|
retries += 1
|
349
349
|
retry if retries <= max_retries
|