Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
s3storage
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cubicweb
cubes
s3storage
Commits
6b7e4d7246a8
Commit
6b7e4d7246a8
authored
4 years ago
by
Elouan Martinet
Browse files
Options
Downloads
Patches
Plain Diff
[storages] Fix comments
parent
947f7f40bdba
No related branches found
No related tags found
1 merge request
!29
[storages] Do not add a temporary suffix to S3 keys by default
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cubicweb_s3storage/storages.py
+2
-2
2 additions, 2 deletions
cubicweb_s3storage/storages.py
with
2 additions
and
2 deletions
cubicweb_s3storage/storages.py
+
2
−
2
View file @
6b7e4d72
...
@@ -108,7 +108,7 @@
...
@@ -108,7 +108,7 @@
self
.
info
(
'
Temporary uploaded %s.%s (%s/%s) to S3
'
,
self
.
info
(
'
Temporary uploaded %s.%s (%s/%s) to S3
'
,
entity
.
eid
,
attr
,
self
.
bucket
,
suffixed_key
)
entity
.
eid
,
attr
,
self
.
bucket
,
suffixed_key
)
if
oldkey
is
not
None
and
oldkey
!=
key
:
if
oldkey
is
not
None
and
oldkey
!=
key
:
# remove unneeded old
file
# remove unneeded old
key
self
.
delay_deletion
(
entity
,
attr
,
oldkey
)
self
.
delay_deletion
(
entity
,
attr
,
oldkey
)
return
binary
return
binary
...
@@ -120,7 +120,7 @@
...
@@ -120,7 +120,7 @@
return
{}
return
{}
def
entity_updated
(
self
,
entity
,
attr
):
def
entity_updated
(
self
,
entity
,
attr
):
"""
an entity using this storage for attr has been updat
d
ed
"""
"""
an entity using this storage for attr has been updated
"""
return
self
.
entity_added
(
entity
,
attr
)
return
self
.
entity_added
(
entity
,
attr
)
def
entity_deleted
(
self
,
entity
,
attr
):
def
entity_deleted
(
self
,
entity
,
attr
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment