Custom Query (1174 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (73 - 75 of 1174)

Ticket Resolution Summary Owner Reporter
#5524 fixed Zero division error when uploading a file with zero GPS coordinates chrysn
Description

Files produced by a Nikon P510 have an odd GPS direction set, which makes mediagoblin/mediagoblin/tools/exif.py crash in line 180 (the gps_data['direction'] lambda -- denominator is zero).

As a result, the submission form shows a 503, the lazyserver console gives an appropriate backtrace and the file shows up as "failed" in the media processing panel.

This was tested with current master (763eae89d); if it helps, I can send an example picture by private EMail (don't have the camera at hand to create a blank example).

#5523 fixed Requires pyexiv2 unavailable for Python 3.x Jonas Smedegaard
Description

mediagoblin.media_types_raw_image imports pyexiv2 which is only available for Python 2.x.

According to https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=823761#15 the related py3exiv2 provide a different API, and that bugreport mentions instead moving to gexiv2, available and gir module.

#5520 no-action celery has wrong broker in config files Bruno Santos
Description

After installing mediagoblin and used the systemd init files, I wasn't able to transcode any files.. After checking the logs /var/log/messages I get the following error:

ERROR/MainProcess] consumer: Cannot connect to amqp://guest:**@127.0.0.1:5672//: [Errno 111] Connection refused.
Trying again in 14.00 seconds...

[2017-07-28 17:39:06,874: ERROR/MainProcess] consumer: Cannot connect to amqp://guest:**@127.0.0.1:5672//: [Errno 111] Connection refused.
Trying again in 16.00 seconds...

[2017-07-28 17:39:22,912: ERROR/MainProcess] consumer: Cannot connect to amqp://guest:**@127.0.0.1:5672//: [Errno 111] Connection refused.
Trying again in 18.00 seconds.

After searching through the issues, I found issue #859: https://issues.mediagoblin.org/ticket/859

somewhat related to this problem...

I've checked config_spec.ini and found this:

[celery]
# default result stuff
CELERY_RESULT_BACKEND = string(default="database")
CELERY_RESULT_DBURI = string(default="sqlite:///%(here)s/celery.db")

# default kombu stuff
BROKER_URL = string(default="amqp://")

After changing the kombu stuff to:

BROKER_TRANSPORT = string(default="sqlalchemy")
BROKER_URL = string(default="sqlite:///%(here)s/kombu.db")

now it works...

I've never touched this file, this is configuration by default and there's nothing in the easy deployment wiki page to change something in here...

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.