Skip to content

Commit 55866b2

Browse files
authored
Accepting Big File BugFix (#29)
* Use the FileName from response * BugFix v2.0.2
1 parent 1182f66 commit 55866b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ExtractTable/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def process_file(
163163
big_gen = self.bigfile_upload(filepath=os.path.basename(filepath))
164164
with open(filepath, 'rb') as ifile:
165165
rq.post(big_gen['url'], data=big_gen['fields'], files={'file': ifile})
166-
trigger_resp = self.trigger_process(None, signed_filename=os.path.basename(filepath), **kwargs)
166+
trigger_resp = self.trigger_process(None, signed_filename=big_gen["fields"]["key"], dup_check=dup_check, **kwargs)
167167

168168
for _type, _obj in trigger_resp.items():
169169
self.__setattr__(_type, _obj)

ExtractTable/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (2, 0, 1)
1+
VERSION = (2, 0, 2)
22
PRERELEASE = None # "alpha", "beta" or "rc"
33
REVISION = None
44

0 commit comments

Comments
 (0)