LightRun Python Agent Error : TypeError: can only concatenate str (not "NoneType") to str

LightRun Python Agent Error : TypeError: can only concatenate str (not "NoneType") to str

当我尝试 运行 Lightrun python 代理时,出现此错误:

$ python3 main.py

Traceback (most recent call last):
File "main.py", line 4, in <module>
lightrun.enable(com_lightrun_server="https://app.lightrun.com/soumibardhan",
File "<frozen lightrun>", line 142, in enable
File "<frozen lightrun>", line 73, in _StartDebugger
File "<frozen lightrun.hub_client>", line 89, in __init__
TypeError: can only concatenate str (not "NoneType") to str  

重现:

https://app.lightrun.com:8443/auth/realms/lightrun/protocol/openid-connect/registrations?client_id=web_app&response_type=code&redirect_uri=https://app.lightrun.com

我在第二步选择了pycharm和python。下一步,登录,工作。但是尝试 运行 代理给出了这个错误。

这是我的 main.py :

if __name__ == '__main__':
    try:
        import lightrun
        lightrun.enable(com_lightrun_server="https://app.lightrun.com/soumibardhan",
                        com_lightrun_secret="<your personal token>")
    except ImportError as e:
        print("Error importing Lightrun: ", e)
    print('PyCharm')

只需在此处替换您的令牌或按照简单的运行 安装步骤进行操作。

我卡在这一步了。请帮忙。

请注意,您应该使用的 URL 是:

lightrun.enable(com_lightrun_server='https://app.lightrun.com/company/soumibardhan', com_lightrun_secret='XXXX')

(注意添加的 /company/ )。