File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- __version_info__ = (0 , 7 , 2 )
15
+ __version_info__ = (0 , 7 , 3 )
16
16
__version__ = "." .join (map (str , __version_info__ ))
Original file line number Diff line number Diff line change @@ -324,11 +324,13 @@ def _parse_arrow_results(files: List[TransactionAsyncFile]):
324
324
def poll_with_specified_overhead (
325
325
f ,
326
326
overhead_rate : float ,
327
- start_time : int = time . time () ,
327
+ start_time : float = None ,
328
328
timeout : int = None ,
329
329
max_tries : int = None ,
330
330
max_delay : int = 120 ,
331
331
):
332
+ if start_time is None :
333
+ start_time = time .time ()
332
334
tries = 0
333
335
max_time = time .time () + timeout if timeout else None
334
336
You can’t perform that action at this time.
0 commit comments