bookmark_sync_conflict__84WNtws

Status: Failed
Started: 3/19 17:05
Execution: 6m 2.4s
Test: 9.2s
2026-03-19 09:05:34.075	DEBUG	native:1	Pochi	pochi v0.6.1
2026-03-19 09:05:34.081	DEBUG	native:7	PochiConfigManager	add workspace config: /root/.pochi/config.jsonc
2026-03-19 09:05:34.159	DEBUG	/$bunfs/pochi:503183	loadAgents	Loaded 5 custom agents (5 valid, 0 invalid)
2026-03-19 09:05:34.160	DEBUG	/$bunfs/pochi:503184	loadSkills	Loaded 2 skills (2 valid, 0 invalid)
2026-03-19 09:05:34.178	DEBUG	/$bunfs/pochi:439420	PochiVendor	JWT is expiring or missing, fetching a new one
2026-03-19 09:06:43.749	DEBUG	/$bunfs/pochi:415701	MCPHub	MCP servers configuration changed via signal:
2026-03-19 09:06:43.749	DEBUG	/$bunfs/pochi:415813	MCPHub	Build MCPHub Status
2026-03-19 09:06:43.863	DEBUG	/$bunfs/pochi:502609	TaskRunner	Starting TaskRunner...
2026-03-19 09:06:43.878	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 09:06:43.979	DEBUG	/$bunfs/pochi:496641	generateTaskTitle	Generating task title, old: null, new: You are a developer migrating from Git to jj. You have been working on a feature locally on the `feature-login` bookmark. Meanwhile, your coworker pushed some new commits to the same `feature-login` bookmark on the `origin` remote.
2026-03-19 09:06:53.411	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 09:06:55.158	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 09:06:55.913	DEBUG		generateTaskTitle	Generating task title, old: You are a developer migrating from Git to jj. You have been working on a feature locally on the `feature-login` bookmark. Meanwhile, your coworker pushed some new commits to the same `feature-login` bookmark on the `origin` remote., new: Resolve jj feature-login bookmark conflict and push rebased changes
2026-03-19 09:06:57.405	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 09:07:00.394	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 09:07:02.930	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 09:07:05.737	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 09:07:09.419	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 09:11:34.088	DEBUG		TaskRunner	Failed:

 TypeError  The DOMException.name getter can only be used on instances of DOMException, 1107, 17, 1107, 17, internal:util/inspect
error stack:
  • inspect	formatError
	util/inspect:1107
  • inspect	formatRaw
	util/inspect:854
  • inspect	formatWithOptionsInternal
	util/inspect:1661
  • pochi	transportFormatted
	/$bunfs/pochi:417727
  • pochi	log
	/$bunfs/pochi:417843
  • pochi	onError
	/$bunfs/pochi:500813
  • pochi	makeRequest
	/$bunfs/pochi:432009
  • 	
	
  • 	
	
  • 	
	
  • 	
	
  • native	processTicksAndRejections
	native:7
The DOMException.name getter can only be used on instances of DOMException
Hit:1 http://security.ubuntu.com/ubuntu noble-security InRelease
Hit:2 http://archive.ubuntu.com/ubuntu noble InRelease
Hit:3 http://archive.ubuntu.com/ubuntu noble-updates InRelease
Hit:4 http://archive.ubuntu.com/ubuntu noble-backports InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
curl is already the newest version (8.5.0-2ubuntu10.8).
0 upgraded, 0 newly installed, 0 to remove and 17 not upgraded.
downloading uv 0.9.7 x86_64-unknown-linux-gnu
no checksums to verify
installing to /root/.local/bin
  uv
  uvx
everything's installed!

To add $HOME/.local/bin to your PATH, either restart your shell or run:

    source $HOME/.local/bin/env (sh, bash, zsh)
    source $HOME/.local/bin/env.fish (fish)
Downloading pygments (1.2MiB)
 Downloading pygments
Installed 6 packages in 17ms
============================= test session starts ==============================
platform linux -- Python 3.12.3, pytest-8.4.1, pluggy-1.6.0
rootdir: /tests
plugins: json-ctrf-0.3.5
collected 4 items

../tests/test_final_state.py ...F                                        [100%]

=================================== FAILURES ===================================
_____________________ test_feature_login_pushed_to_origin ______________________

    def test_feature_login_pushed_to_origin():
        # Fetch first to ensure we see the latest from remote
        fetch_result = run_jj(["git", "fetch"])
        assert fetch_result.returncode == 0, f"jj git fetch failed: {fetch_result.stderr}"
    
        # Check if feature-login and feature-login@origin point to the same commit
        local_rev = run_jj(["log", "--no-graph", "-r", "feature-login", "-T", 'commit_id'])
        assert local_rev.returncode == 0, f"jj log failed: {local_rev.stderr}"
    
        remote_rev = run_jj(["log", "--no-graph", "-r", "feature-login@origin", "-T", 'commit_id'])
        assert remote_rev.returncode == 0, f"jj log failed: {remote_rev.stderr}"
    
>       assert local_rev.stdout.strip() == remote_rev.stdout.strip(), \
            f"Local feature-login ({local_rev.stdout.strip()}) does not match feature-login@origin ({remote_rev.stdout.strip()}). The bookmark was not successfully pushed."
E       AssertionError: Local feature-login (418c52b2587646a718e9383d7cb8251f710cb125) does not match feature-login@origin (d7d2498fa8472b0aa291c11f539e62afe229ece8). The bookmark was not successfully pushed.
E       assert '418c52b25876...8251f710cb125' == 'd7d2498fa847...e62afe229ece8'
E         
E         - d7d2498fa8472b0aa291c11f539e62afe229ece8
E         + 418c52b2587646a718e9383d7cb8251f710cb125

/tests/test_final_state.py:40: AssertionError
==================================== PASSES ====================================
=========================== short test summary info ============================
PASSED ../tests/test_final_state.py::test_feature_login_bookmark_exists_and_not_conflicted
PASSED ../tests/test_final_state.py::test_feature_login_points_to_my_local_commit
PASSED ../tests/test_final_state.py::test_feature_login_parent_is_coworker_commit
FAILED ../tests/test_final_state.py::test_feature_login_pushed_to_origin - As...
========================= 1 failed, 3 passed in 0.14s ==========================