mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-27 07:17:10 +00:00
fix: AttributeError: 'SessionReplayViewSet' object has no attribute 'ACCESS_KEY'
This commit is contained in:
parent
3c32048aa8
commit
51d7e51119
@ -300,7 +300,7 @@ class SessionReplayViewSet(viewsets.ViewSet):
|
||||
REGION = config.get("REGION", None)
|
||||
ACCESS_KEY = config.get("ACCESS_KEY", None)
|
||||
SECRET_KEY = config.get("SECRET_KEY", None)
|
||||
if self.ACCESS_KEY and REGION and SECRET_KEY:
|
||||
if ACCESS_KEY and REGION and SECRET_KEY:
|
||||
s3 = boto3.client('s3',
|
||||
region_name=REGION,
|
||||
aws_access_key_id=ACCESS_KEY,
|
||||
|
Loading…
Reference in New Issue
Block a user