ClipCascade icon indicating copy to clipboard operation
ClipCascade copied to clipboard

ERROR - An unexpected error has occurred: 'Application' object has no attribute 'stomp_manager'

Open geolaw opened this issue 4 months ago • 0 comments

running server on fedora 41 via docker, I can connect to it and have reset the admin username and password - that all appears to be working fine.

Trying to connect from an arch linux client running hyprland + wayland this is the omarchy linux distro

Image

Initially, sudo running sudo python3 main.py was erroring out due to the DISPLAY Xlib.error.DisplayConnectionError: Can't connect to display ":0": b'Authorization required, but no authorization protocol specified\n'

I finally tracked that down to having to run a xhost + local: and once I did that, I could launch main.py was root, but with or without sudo, I get the same error

 ❯ sudo WAYLAND_DISPLAY=wayland-1  python3 main.py
Traceback (most recent call last):
  File "/home/glaw/Downloads/ClipCascade/main.py", line 21, in <module>
    Main()
    ~~~~^^
  File "/home/glaw/Downloads/ClipCascade/main.py", line 17, in __init__
    Application().run()
    ~~~~~~~~~~~~~~~~~^^
  File "/home/glaw/Downloads/ClipCascade/core/application.py", line 304, in run
    self._get_ws_manager().disconnect()
    ~~~~~~~~~~~~~~~~~~~~^^
  File "/home/glaw/Downloads/ClipCascade/core/application.py", line 215, in _get_ws_manager
    return self.stomp_manager
           ^^^^^^^^^^^^^^^^^^
AttributeError: 'Application' object has no attribute 'stomp_manager'

I've search pacman and yay for anything with stomp, found a ruby-stomp package which I installed but no difference.

geolaw avatar Sep 02 '25 14:09 geolaw