Seahub startet nach Upgrade 6.1.2 - 6.2.3 nicht mehr

Hallo Forum,
nach dem Upgrade 6.1.2 nach 6.2.3 startet seahub nicht mehr. Ich versuche schon seit Tagen den Fehler zu finden.
Die Eingabe:

/home/seafile/seafile-server-latest/seahub.sh start

bringt folgende Fehlermeldung:

LC_ALL is not set in ENV, set to en_US.UTF-8
Starting seahub at port 8000 …

Error happened during creating seafile admin.

Exception AttributeError: “‘SyncClient’ object has no attribute ‘_connfd’” in <bound method SyncClient.del of <ccnet.sync_client.SyncClient object at 0xb64b0390>> ignored
Error:Seahub failed to start.
Please try to run “./seahub.sh start” again

Kann jemand helfen?

Gruß Kurz

Ergänzung

nginx funktioniert einwandfrei mit Standard-Seite und mit php
seafile.sh startet ebenfalls ohne Fehlermeldung.

Hier meine conf-Dateien:

ccnet.conf

[General]
USER_NAME = My_Seafile
ID = 4f9ea8a983d9c8ddaa59f27a21e0973b3d6601e2
NAME = My_Seafile
SERVICE_URL = https://192.168.178.35
[Client]
PORT = 13419

seahub_settings.py

SECRET_KEY = “g8kl&_qz55o776t!hmsmp^@#q%i!x&&c^m0zmx3n1%$#6s^v8p”
HTTP_SERVER_ROOT = ‘https://192.168.178.35:8001/seafhttp

seafile.conf
[> network]
> port=12001
> [fileserver]
> host=0.0.0
> port=8082
> max_upload_size=4000
> max_download_dir_size=4000

seahub (/etc/nginx/sites-available/)

server {
listen 8001; # <------------
ssl on; # <-------------------------------------------- SSL
ssl_certificate /etc/nginx/ssl/seahub.crt; # <--------- SSL
ssl_certificate_key /etc/nginx/ssl/seahub.key; # <----- SSL
server_name 192.168.178.35; # <---------------- CHANGE THIS
error_page 497 https://$host:$server_port$request_uri;

location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host:$server_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
proxy_set_header X-Forwarded-Proto https; 
access_log /var/log/nginx/seahub.access.log; 
error_log /var/log/nginx/seahub.error.log;
proxy_read_timeout 1200s; 
client_max_body_size 0;
}

}

Ich habe soeben wieder die alte Version 6.1.2 wiederhergestellt. Jetzt läuft seahub.sh wieder mit fastcgi.
Ich hoffe es gibt bald eine Lösung.

Gruß Kurz

Erneutes Update von 6.1.2 auf 6.2.5 nach Anleitung auf der Download-Seite durchgeführt.
Diesmal hat das Update ohne Probleme funktioniert.

Gruß Kurz