We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eb8e26 commit 7470c34Copy full SHA for 7470c34
src/opengeodeweb_viewer/rpc/utils_protocols.py
@@ -11,7 +11,7 @@
11
12
13
class VtkUtilsView(VtkView):
14
- mesh_prefix = "opengeodeweb_viewer.utils"
+ mesh_prefix = "opengeodeweb_viewer."
15
mesh_schemas_dict = get_schemas_dict(
16
os.path.join(os.path.dirname(__file__), "schemas")
17
)
@@ -20,7 +20,6 @@ def __init__(self) -> None:
20
super().__init__()
21
22
@exportRpc(mesh_prefix + mesh_schemas_dict["kill"]["rpc"])
23
- def kill(self, params) -> None:
24
- validate_schema(params, self.mesh_schemas_dict["kill"], self.mesh_prefix)
+ def kill(self) -> None:
25
print("Manual viewer kill, shutting down...", flush=True)
26
os._exit(0)
0 commit comments