Changeset 4703


Ignore:
Timestamp:
03/14/14 16:34:15 (11 years ago)
Author:
Sander.Maijers@mpi.nl
Message:
  • Fix max_n_threads in production.ini.
  • Reraise the exception after Waitress configuration error.
  • Fix MarkDown? in README.markdown.
Location:
media_conv
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • media_conv/README.markdown

    r4701 r4703  
    4545## Future work
    4646
    47 === Goals ===
    48 1.   Make more robust: currently the conversion process creates a temporary file for each request that isn't being cleaned up. Move to a performant and stable database/key-value store.
     471.   Make more robust: currently the conversion process creates a temporary file with the converted media data for each succesful request. Move to a performant and stable database/key-value store.
    49482.   Handle more types of media.
  • media_conv/production.ini

    r4701 r4703  
    77use = egg:media_conv
    88caching = false
    9 max_threads = 25
     9max_n_threads = 25
    1010ffmpeg_command = ffmpeg
    1111
  • media_conv/src/media_conv/__init__.py

    r4701 r4703  
    2828        except (KeyError, TypeError, ValueError) as e:
    2929            logger.error("Waitress configuration error. " + pprint.pformat(e))
     30            raise
    3031        else:
    31 
    3232            setrlimit(RLIMIT_NPROC, (settings['max_n_threads'], settings['max_n_threads']))
    3333
Note: See TracChangeset for help on using the changeset viewer.