janet-cli 0.3.10__py3-none-any.whl → 0.3.11__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
janet/sync/sse_watcher.py CHANGED
@@ -75,6 +75,11 @@ class SSEWatcher:
75
75
  event: Event dictionary
76
76
  """
77
77
  event_type = event.get("type")
78
+
79
+ # Ignore keepalive pings
80
+ if event_type == "ping":
81
+ return
82
+
78
83
  project_id = event.get("projectId")
79
84
  ticket_id = event.get("ticketId")
80
85
  ticket_data = event.get("ticketData", {})
@@ -230,7 +235,7 @@ class SSEWatcher:
230
235
  break
231
236
  # Expected disconnection from load balancer timeout - reconnect silently
232
237
  elif "incomplete chunked read" in error_str or "closed" in error_str.lower():
233
- console.print("[dim]Connection closed, reconnecting...[/dim]")
238
+ pass # Silent reconnect - this is normal behavior
234
239
  else:
235
240
  console.print(f"[yellow]Connection interrupted: {e}[/yellow]")
236
241
  import time
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: janet-cli
3
- Version: 0.3.10
3
+ Version: 0.3.11
4
4
  Summary: CLI tool to sync Janet AI tickets to local markdown files
5
5
  Author-email: Janet AI <support@janet-ai.com>
6
6
  License: MIT
@@ -20,15 +20,15 @@ janet/markdown/yjs_converter.py,sha256=9CCInQzyjbpyDciMSKaUXCNh3xPn0hAwWhl1RES0K
20
20
  janet/sync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  janet/sync/file_manager.py,sha256=fwV0VYP-0ZpwTAyDVqlVUPn3MB2wK6TvFQq450Lhr0I,5839
22
22
  janet/sync/readme_generator.py,sha256=X6Mdi8_s2DigogJsCcMvK_OVno-Fs_v_Em5LscEttWY,14029
23
- janet/sync/sse_watcher.py,sha256=m-Qk0jmAiNTAZjhxvD4VBcY3iLLPMd45j4eUS3I3brw,11277
23
+ janet/sync/sse_watcher.py,sha256=fvcZeKu2xbX9ZQDzkKqAO_FCxkgfpJij6wZMU9hD3ws,11352
24
24
  janet/sync/sync_engine.py,sha256=u_9iv-ZdPpl-wzGID_8WjgsW0GkLIru8VPjw2yg3isU,9708
25
25
  janet/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
26
  janet/utils/console.py,sha256=zMhX4HUXSco-or9KpqBJmYCzmfH_GWtvq-n2Sy6Dfgc,927
27
27
  janet/utils/errors.py,sha256=yxoVDF7ovMT7ooJA-8cvxJK8_3nWumGv7s1n8povi-4,783
28
28
  janet/utils/paths.py,sha256=JYp5gcSEjIbYNJaUcAwdpz6rmta9m0JzoBARC6_AWmM,1706
29
- janet_cli-0.3.10.dist-info/licenses/LICENSE,sha256=wNChlibp2El7r-zfLH8QhOg2oLPAvGwP7ETnVWyNRio,1065
30
- janet_cli-0.3.10.dist-info/METADATA,sha256=wZlUnNDXqco58Yn9HXQDC39RCxbPMVEpx6WuDRrdBBE,10312
31
- janet_cli-0.3.10.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
32
- janet_cli-0.3.10.dist-info/entry_points.txt,sha256=MeYUkStK_xcqW3AylPNpQh_H5zmfojB1-d8WMhifkvw,40
33
- janet_cli-0.3.10.dist-info/top_level.txt,sha256=Ux5zWeRoPO3Tu87toTRoiwMkIQNQylV9aRO2g7KqNW4,6
34
- janet_cli-0.3.10.dist-info/RECORD,,
29
+ janet_cli-0.3.11.dist-info/licenses/LICENSE,sha256=wNChlibp2El7r-zfLH8QhOg2oLPAvGwP7ETnVWyNRio,1065
30
+ janet_cli-0.3.11.dist-info/METADATA,sha256=yWf_Ktt0rg_FhtOfemtqeMCxxyC9JQFsc4kUgjPZ1hI,10312
31
+ janet_cli-0.3.11.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
32
+ janet_cli-0.3.11.dist-info/entry_points.txt,sha256=MeYUkStK_xcqW3AylPNpQh_H5zmfojB1-d8WMhifkvw,40
33
+ janet_cli-0.3.11.dist-info/top_level.txt,sha256=Ux5zWeRoPO3Tu87toTRoiwMkIQNQylV9aRO2g7KqNW4,6
34
+ janet_cli-0.3.11.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.10.1)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5