Skip to content
Snippets Groups Projects
Commit 9453bff7 authored by Manuel Günther's avatar Manuel Günther
Browse files

Use client id instead of id for IJBA file

parent 97666f68
No related branches found
No related tags found
1 merge request!25Resolve "IJB-A database implemented incorrectly"
Pipeline #
......@@ -21,7 +21,7 @@ class IJBABioFile(FaceBioFile):
def make_path(self, directory, extension):
# add file ID to the path, so that a unique path is generated (there might be several identities in each physical file)
return str(os.path.join(directory or '', self.path + "-" + str(self.id) + (extension or '')))
return str(os.path.join(directory or '', self.path + "-" + str(self.client_id) + (extension or '')))
class IJBABioFileSet(BioFileSet):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment