Skip to content

Commit

Permalink
EPMRPP-91282 || Add update for 'Rerun Developers Guide'+redirects (#741)
Browse files Browse the repository at this point in the history
Co-authored-by: Yuliya_Prihodko <Yuliya_Prihodko@epam.com>
  • Loading branch information
pressayuliya and Yuliya_Prihodko committed May 31, 2024
1 parent 8bf7832 commit 3056942
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 3 deletions.
8 changes: 6 additions & 2 deletions docs/developers-guides/RerunDevelopersGuide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@ And response will contain found launch `id` for asynchronous endpoint or `id` an

#### Using agent

To start launch rerun set `rp.rerun=true` and `rp.rerun.of=launch_uuid` in `reportportal.properties` file. Where `launch_uuid` is UUID of launch that have to be reruned.
To start a launch rerun using the agent, set `rp.rerun=true` and `rp.rerun.of=launch_uuid` in the `reportportal.properties` file. If you want to save rerun results in the original launch without creating a new one, also set `rp.launch.uuid=launch_uuid`. Here, `launch_uuid` is the UUID of the launch that you want to rerun.

Here's an example of what your `reportportal.properties` file might look like:

```properties
rp.endpoint=https://rp.com
Expand All @@ -122,8 +124,10 @@ rp.project=reporting-test
rp.reporting.async=true
rp.rerun=true
rp.rerun.of=79446272-a439-45f9-8073-5ca7869f140b
rp.launch.uuid=79446272-a439-45f9-8073-5ca7869f140b
```
Where `79446272-a439-45f9-8073-5ca7869f140b` is UUID of desired launch.

In this example, `79446272-a439-45f9-8073-5ca7869f140b` is the UUID of the launch you want to rerun.

#### Handling

Expand Down
46 changes: 45 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,51 @@ const config = {
{
to: '/dashboards-and-widgets/TableComponentHealthCheck',
from: '/Table-Component-health',
}
},
{
to: '/developers-guides',
from: '/category/dev-guides',
},
{
to: '/developers-guides/APIDifferencesBetweenV4AndV5',
from: '/dev-guides/APIDifferencesBetweenV4AndV5',
},
{
to: '/developers-guides/AsynchronousReporting',
from: '/dev-guides/AsynchronousReporting',
},
{
to: '/developers-guides/AttachmentsGuide',
from: '/dev-guides/AttachmentsGuide',
},
{
to: '/developers-guides/BackEndJavaContributionGuide',
from: '/dev-guides/BackEndJavaContributionGuide',
},
{
to: '/developers-guides/InteractionsBetweenAPIAndAnalyzer',
from: '/dev-guides/InteractionsBetweenAPIAndAnalyzer',
},
{
to: '/developers-guides/PluginDevelopersGuide',
from: '/dev-guides/PluginDevelopersGuide',
},
{
to: '/developers-guides/ReportPortalAPI',
from: '/dev-guides/ReportPortalAPI',
},
{
to: '/developers-guides/ReportingDevelopersGuide',
from: '/dev-guides/ReportingDevelopersGuide',
},
{
to: '/developers-guides/RerunDevelopersGuide',
from: '/dev-guides/RerunDevelopersGuide',
},
{
to: '/developers-guides/RetriesReporting',
from: '/dev-guides/RetriesReporting',
},
],
},
],
Expand Down

0 comments on commit 3056942

Please sign in to comment.