Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #296 from zowe/task-purge-update
Browse files Browse the repository at this point in the history
removed the ability to kill a task; fixes #278
  • Loading branch information
Rajpreetgill committed Aug 22, 2022
2 parents ce28a1d + de8778a commit c79c17b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Ensure that you meet the following prerequisites before you use the extension:
- Work with multiple regions containing programs, local transactions and local files within a plex in a comprehensible tree-like format.
- Perform actions such as `Enable`, `Disable`, `New Copy` and `Phase In` directly from the UI.
- Perform additional actions on local files including `Open` and `Close` directly from the UI.
- Perform a `Purge` on Tasks with the option to select from a `Purge`, `Force Purge` or `Kill`.
- Perform a `Purge` on Tasks with the option to select from a `Purge` or `Force Purge`.
- View and search attributes of resources and regions by right-clicking and using the dynamic filtering feature.
- Create new CICS profiles, update session details, and delete profiles using the user-friendly interface.
- Apply multiple filters to regions, programs, local transactions local files and/or tasks.
Expand Down Expand Up @@ -283,7 +283,7 @@ To close a local file, right-click against an open local file and perform the `C

### Purge Task

Right-click against a task and click the `Purge Task` command. This will open a prompt asking whether to perform a `Purge`, `Force Purge` or `Kill`.
Right-click against a task and click the `Purge Task` command. This will open a prompt asking whether to perform a `Purge` or `Force Purge`.

Select the appropriate condition to perform the purge.

Expand Down
2 changes: 1 addition & 1 deletion src/commands/purgeTaskCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function getPurgeTaskCommand(tree: CICSTree, treeview: TreeView<any>) {
let parentRegions: CICSRegionTree[] = [];
let purgeType = await window.showInformationMessage(
`Choose one of the following options for Purge`,
...["Purge", "Force Purge", "Kill"]);
...["Purge", "Force Purge"]);
if (purgeType){
purgeType = purgeType.replace(" ","").toUpperCase();

Expand Down

0 comments on commit c79c17b

Please sign in to comment.