mirror of https://github.com/jumpserver/jumpserver
#1258 bug fix: 阿里云OSS录像无法回放问题
parent
787be3ff7a
commit
0d8a600277
|
@ -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…
Reference in New Issue