Done with models split (now needs testing to ensure that is at least as was before)

This commit is contained in:
Adolfo Gómez 2014-04-23 14:01:23 +00:00
parent a52c49ae5e
commit 244302db58
2 changed files with 9 additions and 2 deletions

View File

@ -168,17 +168,23 @@ encoding//src/uds/migrations/0016_auto__add_field_userservice_cluster_node.py=ut
encoding//src/uds/migrations/0017_change_tables.py=utf-8
encoding//src/uds/migrations/0018_security_config.py=utf-8
encoding//src/uds/models/Authenticator.py=utf-8
encoding//src/uds/models/Cache.py=utf-8
encoding//src/uds/models/Config.py=utf-8
encoding//src/uds/models/DelayedTask.py=utf-8
encoding//src/uds/models/Group.py=utf-8
encoding//src/uds/models/Log.py=utf-8
encoding//src/uds/models/Network.py=utf-8
encoding//src/uds/models/OSManager.py=utf-8
encoding//src/uds/models/Provider.py=utf-8
encoding//src/uds/models/Scheduler.py=utf-8
encoding//src/uds/models/Service.py=utf-8
encoding//src/uds/models/ServicesPool.py=utf-8
encoding//src/uds/models/ServicesPoolPublication.py=utf-8
encoding//src/uds/models/StatsCounters.py=utf-8
encoding//src/uds/models/StatsEvents.py=utf-8
encoding//src/uds/models/Storage.py=utf-8
encoding//src/uds/models/Transport.py=utf-8
encoding//src/uds/models/UniqueId.py=utf-8
encoding//src/uds/models/User.py=utf-8
encoding//src/uds/models/UserPreference.py=utf-8
encoding//src/uds/models/UserService.py=utf-8

View File

@ -34,7 +34,8 @@ from __future__ import unicode_literals
from django.db.models import Q
from django.db import transaction, DatabaseError
from uds.models import Scheduler as dbScheduler, getSqlDatetime, State
from uds.models import Scheduler as dbScheduler, getSqlDatetime
from uds.core.util.State import State
from uds.core.jobs.JobsFactory import JobsFactory
from datetime import timedelta
from socket import gethostname
@ -42,7 +43,7 @@ import threading
import time
import logging
__updated__ = '2014-03-20'
__updated__ = '2014-04-23'
logger = logging.getLogger(__name__)