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 1212# See the License for the specific language governing permissions and
1313# limitations under the License.
1414
15- __version_info__ = (0 , 7 , 2 )
15+ __version_info__ = (0 , 7 , 3 )
1616__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]):
324324def poll_with_specified_overhead (
325325 f ,
326326 overhead_rate : float ,
327- start_time : int = time . time () ,
327+ start_time : float = None ,
328328 timeout : int = None ,
329329 max_tries : int = None ,
330330 max_delay : int = 120 ,
331331):
332+ if start_time is None :
333+ start_time = time .time ()
332334 tries = 0
333335 max_time = time .time () + timeout if timeout else None
334336
You can’t perform that action at this time.
0 commit comments