Maksim

Results 7 comments of Maksim

If I put 2 backslashes angular2-seed production escapes unicode properly but in dev it start to behave incorrectly. I think you should add regexp that puts extra backslashes before unicode...

I think yes. I have changed my css to not use unicode so this issue doesn't affect my code anymore.

The problem is that it behaves differently in dev compared to prod. It needs consistent behavior.

```python from flask import Flask, make_response, request from flask_executor import Executor executor = Executor() def create_app(): app = Flask(__name__) app.config['EXECUTOR_TYPE'] = 'thread' app.config['EXECUTOR_PROPAGATE_EXCEPTIONS'] = True executor.init_app(app) with app.app_context(): process_queue() #...

```python def process_queue(): future = process_task.submit(task) future.add_done_callback(task_processed(task)) @executor.job def process_task(): time.sleep(5) ```

I cloned the project, made the change that I needed and it works. You can look at my commit here: https://github.com/tandu/flask-executor

Hi @dchevell - any updates on this?