Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
7f6dd7de
authored
May 23, 2018
by
Szabolcs Gelencser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix startup.py migrations
parent
49d1f881
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
circle/openstack_api/keystone.py
+2
-2
circle/vm/startup.py
+3
-0
No files found.
circle/openstack_api/keystone.py
View file @
7f6dd7de
...
...
@@ -713,7 +713,7 @@ def role_delete(request, role_id):
def
role_list
(
request
,
filters
=
None
):
"""Returns a global list of available roles."""
manager
=
keystoneclient
(
request
,
admin
=
True
)
.
roles
manager
=
keystoneclient
(
request
)
.
roles
roles
=
[]
kwargs
=
{}
if
filters
is
not
None
:
...
...
@@ -733,7 +733,7 @@ def role_list(request, filters=None):
def
roles_for_user
(
request
,
user
,
project
=
None
,
domain
=
None
):
"""Returns a list of user roles scoped to a project or domain."""
manager
=
keystoneclient
(
request
,
admin
=
True
)
.
roles
manager
=
keystoneclient
(
request
)
.
roles
if
VERSIONS
.
active
<
3
:
return
manager
.
roles_for_user
(
user
,
project
)
else
:
...
...
circle/vm/startup.py
View file @
7f6dd7de
from
django.conf
import
settings
from
django.apps
import
AppConfig
from
django.db
import
OperationalError
class
DefaultLeaseConfig
(
AppConfig
):
...
...
@@ -16,3 +17,5 @@ class DefaultLeaseConfig(AppConfig):
suspend_interval_seconds
=
settings
.
DEFAULT_LEASE_SUSPEND_SECONDS
,
delete_interval_seconds
=
settings
.
DEFAULT_LEASE_DELETE_SECONDS
,
)
.
save
()
except
OperationalError
:
pass
# this could be raised on migration
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment