Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kolla Ansible
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
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
Very Demiurge Very Mindful
Kolla Ansible
Commits
c8228da0
Commit
c8228da0
authored
9 years ago
by
Jenkins
Committed by
Gerrit Code Review
9 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Use dict.items() for adding Python 3 compatibility"
parents
8fd9e85a
defd70ce
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
kolla/cmd/build.py
+2
-2
2 additions, 2 deletions
kolla/cmd/build.py
kolla/common/config.py
+1
-1
1 addition, 1 deletion
kolla/common/config.py
with
3 additions
and
3 deletions
kolla/cmd/build.py
+
2
−
2
View file @
c8228da0
...
...
@@ -488,7 +488,7 @@ class KollaWorker(object):
if
self
.
image_statuses_bad
:
LOG
.
info
(
"
Images that failed to build
"
)
LOG
.
info
(
"
===========================
"
)
for
name
,
status
in
six
.
iteritems
(
self
.
image_statuses_bad
):
for
name
,
status
in
self
.
image_statuses_bad
.
items
(
):
LOG
.
error
(
'
%s Failed with status: %s
'
,
name
,
status
)
if
self
.
image_statuses_unmatched
:
...
...
@@ -583,7 +583,7 @@ class KollaWorker(object):
for
image
in
self
.
images
:
sort_images
[
image
[
'
fullname
'
]]
=
image
for
parent_name
,
parent
in
six
.
iteritems
(
sort_images
):
for
parent_name
,
parent
in
sort_images
.
items
(
):
for
image
in
sort_images
.
values
():
if
image
[
'
parent_name
'
]
==
parent_name
:
parent
[
'
children
'
].
append
(
image
)
...
...
This diff is collapsed.
Click to expand it.
kolla/common/config.py
+
1
−
1
View file @
c8228da0
...
...
@@ -240,7 +240,7 @@ def get_source_opts(type_=None, location=None, reference=None):
def
gen_all_source_opts
():
for
name
,
params
in
SOURCES
.
iter
items
():
for
name
,
params
in
SOURCES
.
items
():
type_
=
params
[
'
type
'
]
location
=
params
[
'
location
'
]
reference
=
params
.
get
(
'
reference
'
)
...
...
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