Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chenhao Ma
core
Commits
1a8ab984
Commit
1a8ab984
authored
9 years ago
by
nagem
Browse files
Options
Downloads
Patches
Plain Diff
Fix issues noted in Archive PR #194
parent
04b47c4b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
api/dao/containerstorage.py
+2
-0
2 additions, 0 deletions
api/dao/containerstorage.py
api/handlers/containerhandler.py
+1
-1
1 addition, 1 deletion
api/handlers/containerhandler.py
with
3 additions
and
1 deletion
api/dao/containerstorage.py
+
2
−
0
View file @
1a8ab984
...
...
@@ -73,6 +73,8 @@ class ContainerStorage(object):
elif
self
.
cont_name
==
"
sessions
"
:
config
.
db
.
acquisitions
.
update_many
(
{
'
session
'
:
_id
},
update
)
else
:
raise
ValueError
(
'
changes can only be propagated from project or session level
'
)
def
_delete_el
(
self
,
_id
):
if
self
.
use_object_id
:
...
...
This diff is collapsed.
Click to expand it.
api/handlers/containerhandler.py
+
1
−
1
View file @
1a8ab984
...
...
@@ -257,7 +257,7 @@ class ContainerHandler(base.RequestHandler):
payload_validator
(
payload
,
'
PUT
'
)
# Check if any payload keys are a propogated property, ensure they all are
rec
=
False
if
set
(
payload
.
keys
()).
intersection
(
set
(
self
.
config
[
'
propagated_properties
'
]
)):
if
set
(
payload
.
keys
()).
intersection
(
set
(
self
.
config
.
get
(
'
propagated_properties
'
,
[])
)):
if
not
set
(
payload
.
keys
()).
issubset
(
set
(
self
.
config
[
'
propagated_properties
'
])):
self
.
abort
(
400
,
'
Cannot update propagated properties together with unpropagated properties
'
)
else
:
...
...
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