Fix references to the old master branch with the new branch name

This commit is contained in:
Mahmoud Ben Hassine
2021-08-17 21:34:55 +02:00
parent bb3809cf55
commit 24152e7a57
5 changed files with 8 additions and 8 deletions

View File

@@ -129,7 +129,7 @@ usable in a multi-threaded `Step`. In particular, most of the off-the-shelf read
writers from Spring Batch are not designed for multi-threaded use. It is, however,
possible to work with stateless or thread safe readers and writers, and there is a sample
(called `parallelJob`) in the
https://github.com/spring-projects/spring-batch/tree/master/spring-batch-samples[Spring
https://github.com/spring-projects/spring-batch/tree/main/spring-batch-samples[Spring
Batch Samples] that shows the use of a process indicator (see
<<readersAndWriters.adoc#process-indicator,Preventing State Persistence>>) to keep track
of items that have been processed in a database input table.
@@ -330,7 +330,7 @@ attribute prevents the task executor from being saturated with requests from a s
step.
There is a simple example that can be copied and extended in the unit test suite for
https://github.com/spring-projects/spring-batch/tree/master/spring-batch-samples/src/main/resources/jobs[Spring
https://github.com/spring-projects/spring-batch/tree/main/spring-batch-samples/src/main/resources/jobs[Spring
Batch Samples] (see `partition*Job.xml` configuration).
Spring Batch creates step executions for the partitions called "step1:partition0", and so

View File

@@ -1032,7 +1032,7 @@ public class RemoteChunkingJobConfiguration {
----
You can find a complete example of a remote chunking job
link:$$https://github.com/spring-projects/spring-batch/tree/master/spring-batch-samples#remote-chunking-sample$$[here].
link:$$https://github.com/spring-projects/spring-batch/tree/main/spring-batch-samples#remote-chunking-sample$$[here].
[[remote-partitioning]]

View File

@@ -1373,7 +1373,7 @@ order to set up various resources or after processing has completed to cleanup t
resources. In the case of a job that works heavily with files, it is often necessary to
delete certain files locally after they have been uploaded successfully to another
location. The following example (taken from the
https://github.com/spring-projects/spring-batch/tree/master/spring-batch-samples[Spring
https://github.com/spring-projects/spring-batch/tree/main/spring-batch-samples[Spring
Batch samples project]) is a `Tasklet` implementation with just such a responsibility:
[source, java]