-
-
Notifications
You must be signed in to change notification settings - Fork 719
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change default branch from master to main
- Loading branch information
Showing
10 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{% extends "file.html" %} | ||
{# See https://github.com/bokeh/bokeh/blob/master/bokeh/core/_templates/file.html #} | ||
{# See https://github.com/bokeh/bokeh/blob/main/bokeh/core/_templates/file.html #} | ||
|
||
{% block preamble %} | ||
<link rel="shortcut icon" href="https://docs.dask.org/en/latest/_static/images/favicon.ico" /> | ||
{% endblock %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Distributed follows a similar procedure for releasing as the core Dask project. | ||
|
||
See https://github.com/dask/dask/blob/master/docs/release-procedure.md for instructions. | ||
See https://github.com/dask/dask/blob/main/docs/release-procedure.md for instructions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,9 +39,9 @@ To keep a fork in sync with the upstream source:: | |
git remote add upstream [email protected]:dask/distributed.git | ||
git remote -v | ||
git fetch -a upstream | ||
git checkout master | ||
git pull upstream master | ||
git push origin master | ||
git checkout main | ||
git pull upstream main | ||
git push origin main | ||
|
||
Test | ||
---- | ||
|
@@ -92,7 +92,7 @@ The test suite contains three kinds of tests | |
same event loop in the main thread. These are good for testing complex | ||
logic and inspecting the state of the system directly. They are also | ||
easier to debug and cause the fewest problems with shutdowns. | ||
2. ``def test_foo(client)``: Tests with multiple processes forked from the master | ||
2. ``def test_foo(client)``: Tests with multiple processes forked from the main | ||
process. These are good for testing the synchronous (normal user) API and | ||
when triggering hard failures for resilience tests. | ||
3. ``popen``: Tests that call out to the command line to start the system. | ||
|
@@ -114,15 +114,15 @@ using the ``@gen_cluster`` style of test, e.g. | |
assert isinstance(s, Scheduler) | ||
assert isinstance(a, Worker) | ||
assert isinstance(b, Worker) | ||
future = c.submit(inc, 1) | ||
assert isinstance(future, Future) | ||
assert future.key in c.futures | ||
# result = future.result() # This synchronous API call would block | ||
result = await future | ||
assert result == 2 | ||
assert future.key in s.tasks | ||
assert future.key in a.data or future.key in b.data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters