Skip to content

Commit a08729d

Browse files
Fixed infinispam/vsam interaction bug
Signed-off-by: Leanid Astrakou <lastrakou@rocketsoftware.com>
1 parent 5ba5a37 commit a08729d

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/renderer/components/stages/CachingService.tsx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -384,14 +384,16 @@ const CachingService = () => {
384384
</FormControl>
385385
}
386386

387-
{ storageMode.toUpperCase() === 'INFINISPAN' && (
388-
<>
387+
{ storageMode.toUpperCase() !== 'INFINISPAN' ?
388+
<></> : (
389+
<>
389390
<Typography sx={{ mt: 2, mb: 2 }} variant="body2" color="textSecondary">
390391
Infinispan (default) does not require configuration during this step as it is built into Zowe. After installation, you may wish to change its default ports of 7600 and 7601 in the Zowe configuration YAML.
391392
</Typography>
392-
<JsonForm schema={setupSchema} onChange={(data: any) => handleFormChange(data)} formData={setupYaml}/>
393-
</>
394-
)}
393+
{/* Uncomment once schema is added for infinispan customizeation */}
394+
{/* <JsonForm schema={setupSchema} onChange={(data: any) => handleFormChange(data)} formData={setupYaml}/> */}
395+
</>)
396+
}
395397

396398
{ storageMode.toUpperCase() !== 'VSAM' ?
397399
<></> : (
@@ -401,9 +403,6 @@ const CachingService = () => {
401403
Vsam as a Caching Service storage method is deprecated in V3. Consider using Infinispan for a simpler and high performance alternative.
402404
</Typography>
403405
)}
404-
<Typography sx={{ mt: 2, mb: 2 }} variant="body2" color="textSecondary">
405-
Zowe version is this {zoweVersion}
406-
</Typography>
407406
<JsonForm schema={setupSchema} onChange={(data: any) => handleFormChange(data)} formData={setupYaml}/>
408407

409408
{ showVsameDatsetName &&

0 commit comments

Comments
 (0)