有效的UUID不是有效的UUID [英] valid UUID is not a valid UUID

查看:392
本文介绍了有效的UUID不是有效的UUID的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到一个非常奇怪的问题,就是我得到一个有效的UUID并不是一个有效的UUID,例如:

I have a really weird problem were I'm getting that a valid UUID is not a valid UUID, for example:

'fd31b6b5-325d-4b65-b496-d7e4d16c8a93' is not a valid UUID.

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/fields/__init__.py" in get_db_prep_value
  2371.                 value = uuid.UUID(value)

File "/usr/lib64/python3.4/uuid.py" in __init__
  134.             hex = hex.replace('urn:', '').replace('uuid:', '')


      During handling of the above exception ('UUID' object has no attribute 'replace'), another exception occurred:

我的模型有一个UUIDField作为pk,错误似乎是随机发生的,直到我重新启动服务器后该错误才会消失,当服务器重新启动它可以正常工作时,所以我在这里有点迷失了,我使用Django 1.10 .7,PostgreSQL的Postgresql 9.6.3,AWS的Python 3.4.3.

My models have an UUIDField as a pk, the error seems to happen randomly and won't dissapear until I restart the server, when the server restarts it works ok, so I'm a little lost here, I use django 1.10.7, postgresql 9.6.3, python 3.4.3 in amazon aws.

引起麻烦的模型

class ReciboTransaccion(models.Model):    
    id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
    ingreso = models.ForeignKey('banco.BaseTransaccion', related_name='recibo_ingreso',
                                on_delete=models.PROTECT,
                                null=True, blank=True,
                                editable=False)
    egreso = models.OneToOneField('banco.BaseTransaccion', related_name='recibo_egreso',
                                  on_delete=models.PROTECT,
                                  null=True, blank=True,
                                  editable=False)
    fecha = models.DateTimeField(auto_now_add=True)

模型"BaseTransaccion"也具有

The model 'BaseTransaccion' also has

id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)

触发此错误的代码如下

serial_movimientos = ReciboSerializer(recibos, many=True)

data = {
        'movimientos': serial_movimientos.data,  # Error happens here
    }

序列化器是相当标准的(已删除了序列化器方法)

the serializer is pretty standard (serializer methods removed)

class ReciboSerializer(serializers.ModelSerializer):
    ingreso = serializers.SerializerMethodField()
    egresos = serializers.SerializerMethodField()
    descripcion = serializers.SerializerMethodField()
    monedero_generado = serializers.SerializerMethodField()
    reembolsada = serializers.SerializerMethodField()

    class Meta:
        model = ReciboTransaccion
        fields = ('ingreso', 'egresos', 'descripcion', 'monedero_generado', 'reembolsada', 'fecha', )

其余的回溯是:

File "/opt/python/run/venv/lib/python3.4/site-packages/django/core/handlers/exception.py" in inner
  42.             response = get_response(request)

File "/opt/python/run/venv/lib/python3.4/site-packages/django/core/handlers/base.py" in _get_response
  187.                 response = self.process_exception_by_middleware(e, request)

File "/opt/python/run/venv/lib/python3.4/site-packages/django/core/handlers/base.py" in _get_response
  185.                 response = wrapped_callback(request, *callback_args, **callback_kwargs)

File "/opt/python/run/venv/lib/python3.4/site-packages/django/views/decorators/csrf.py" in wrapped_view
  58.         return view_func(*args, **kwargs)

File "/opt/python/current/app/myproject/main/ws.py" in index
  129.                 json_data = func(request)

File "/opt/python/current/app/myproject/main/ws.py" in get_datos_home
  534.         'movimientos': serial_movimientos.data,

File "/opt/python/run/venv/lib/python3.4/site-packages/rest_framework/serializers.py" in data
  739.         ret = super(ListSerializer, self).data

File "/opt/python/run/venv/lib/python3.4/site-packages/rest_framework/serializers.py" in data
  263.                 self._data = self.to_representation(self.instance)

File "/opt/python/run/venv/lib/python3.4/site-packages/rest_framework/serializers.py" in to_representation
  657.             self.child.to_representation(item) for item in iterable

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/query.py" in __iter__
  256.         self._fetch_all()

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/query.py" in _fetch_all
  1087.             self._result_cache = list(self.iterator())

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/query.py" in __iter__
  54.         results = compiler.execute_sql()

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/sql/compiler.py" in execute_sql
  824.             sql, params = self.as_sql()

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/sql/compiler.py" in as_sql
  376.             where, w_params = self.compile(self.where) if self.where is not None else ("", [])

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/sql/compiler.py" in compile
  353.             sql, params = node.as_sql(self, self.connection)

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/sql/where.py" in as_sql
  79.                 sql, params = compiler.compile(child)

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/sql/compiler.py" in compile
  353.             sql, params = node.as_sql(self, self.connection)

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/lookups.py" in as_sql
  297.         return super(In, self).as_sql(compiler, connection)

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/lookups.py" in as_sql
  156.         rhs_sql, rhs_params = self.process_rhs(compiler, connection)

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/lookups.py" in process_rhs
  284.             sqls, sqls_params = self.batch_process_rhs(compiler, connection, rhs)

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/lookups.py" in batch_process_rhs
  51.             _, params = self.get_db_prep_lookup(rhs, connection)

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/lookups.py" in get_db_prep_lookup
  181.             if self.get_db_prep_lookup_value_is_iterable else

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/lookups.py" in <listcomp>
  180.             [get_db_prep_value(v, connection, prepared=True) for v in value]

File "/opt/python/run/venv/lib/python3.4/site-packages/django/db/models/fields/__init__.py" in get_db_prep_value
  2373.                 raise TypeError(self.error_messages['invalid'] % {'value': value})

推荐答案

找到了相关的 Django问题以及 mod_wsgi问题. 对我来说,添加:

Found a related Django issue and also mod_wsgi issue. For me, adding:

WSGIApplicationGroup %{GLOBAL}

对Apache配置似乎有效.

to Apache config seems to have worked.

这篇关于有效的UUID不是有效的UUID的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆