File tree Expand file tree Collapse file tree 3 files changed +6
-9
lines changed
src/simcore_service_webserver
tests/integration/fixtures Expand file tree Collapse file tree 3 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1717log = logging .getLogger (__file__ )
1818
1919# TODO: separate API from server application!
20- sio = socketio .AsyncServer (async_mode = "aiohttp" , logging = log )
20+ sio = socketio .AsyncServer (async_mode = "aiohttp" ,
21+ logger = log ,
22+ cors_allowed_origins = '*' , # FIXME: deactivate when reverse proxy issue with traefik resolved
23+ engineio_logger = log )
2124
2225
2326@sio .on ("connect" )
Original file line number Diff line number Diff line change @@ -29,4 +29,4 @@ def wait_till_celery_responsive(url):
2929
3030 status = celery .bin .celery .CeleryCommand .commands ['status' ]()
3131 status .app = status .get_app ()
32- status .run ()
32+ status .run () # raises celery.bin.base.Error if cannot run
Original file line number Diff line number Diff line change 44 Here we can find fixtures of most of these configurations
55
66"""
7-
8- # pylint:disable=wildcard-import
9- # pylint:disable=unused-import
107# pylint:disable=unused-variable
118# pylint:disable=unused-argument
129# pylint:disable=redefined-outer-name
1310
14-
1511import os
1612import re
1713import shutil
1814import socket
19- import subprocess
2015import sys
21- from collections import defaultdict
2216from copy import deepcopy
2317from pathlib import Path
24- from typing import Dict , List , Union
18+ from typing import Dict , List
2519
2620import pytest
2721import yaml
You can’t perform that action at this time.
0 commit comments