Merge branch 'master' of ssh://git.iqser.com:2222/rr/image-prediction

This commit is contained in:
Matthias Bisping 2022-05-12 10:18:56 +02:00
commit 84a8b0a290
2 changed files with 3 additions and 1 deletions

View File

@ -26,6 +26,8 @@ def main():
if __name__ == "__main__":
logging.basicConfig(level=CONFIG.service.logging_level)
logging.getLogger("PIL").setLevel(logging.ERROR)
logging.getLogger("h5py").setLevel(logging.ERROR)
logging.getLogger("pillow").setLevel(logging.ERROR)
logger = get_logger()

View File

@ -49,7 +49,7 @@ def server(server_type):
@pytest.fixture
def host_and_port(host, port, server):
def host_and_port(host, port):
return {"host": host, "port": port}