Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • workers/base-worker
1 result
Show changes
Commits on Source (4)
0.3.2-rc3
0.3.2-rc5
......@@ -20,7 +20,7 @@ For a worker to run properly, you will need two types of credentials:
For the worker to run, you will need an Arkindex authentication token.
You can use your own account's token when testing on your own machine.
You can retrieve your personal API Token from your [profile page](https://doc.arkindex.org/users/auth/index.md#personal-token).
You can retrieve your personal API Token from your [profile page](https://doc.arkindex.org/users/auth/#personal-token).
### Retrieving a worker version ID
......
......@@ -156,7 +156,7 @@ def mock_worker_run_api(responses):
"state": "running",
"mode": "workers",
"corpus": "11111111-1111-1111-1111-111111111111",
"workflow": "http://testserver/ponos/v1/workflow/12341234-1234-1234-1234-123412341234/",
"workflow": "http://testserver/api/v1/workflow/12341234-1234-1234-1234-123412341234/",
"files": [],
"revision": None,
"element": {
......
......@@ -163,7 +163,7 @@ def test_merge_from_worker(
"""
responses.add(
responses.GET,
"http://testserver/ponos/v1/task/my_task/from-agent/",
"http://testserver/api/v1/task/my_task/from-agent/",
status=200,
json={"parents": ["first", "second"]},
)
......