Browse Source

#1258 bug fix: 阿里云OSS录像无法回放问题

pull/1275/head
oldseven 7 years ago
parent
commit
0d8a600277
  1. 4
      apps/terminal/api.py

4
apps/terminal/api.py

@ -297,6 +297,10 @@ class SessionReplayViewSet(viewsets.ViewSet):
date = self.session.date_start.strftime('%Y-%m-%d')
file_path = os.path.join(date, str(self.session.id) + '.replay.gz')
target_path = default_storage.base_location + '/' + path
folder_path = default_storage.base_location + date
if not default_storage.exists(folder_path):
os.mkdir(folder_path)
if client and client.has_file(file_path) and \
client.download_file(file_path, target_path):

Loading…
Cancel
Save