Skip to content

Commit

Permalink
* 255 is a bit excessive.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgroff committed Nov 1, 2018
1 parent 5c75d74 commit 7b3a62a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django_kala/projects/tasks/export_document.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def run(self, *args, **kwargs):
name=export_path.split('/')[-1],
user=user,
details=export_details,
key=get_random_string(length=255)
key=get_random_string(length=78)
)

# Cleanup the temp files.
Expand Down
2 changes: 1 addition & 1 deletion django_kala/projects/tasks/export_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def run(self, *args, **kwargs):
name=export_path.split('/')[-1],
user=user,
details=export_details,
key=get_random_string(length=255)
key=get_random_string(length=78)
)

# Cleanup the temp files.
Expand Down

0 comments on commit 7b3a62a

Please sign in to comment.