[arvados-workbench2] updated: 2.6.3-34-geaf09986
git repository hosting
git at public.arvados.org
Fri Jun 16 14:25:11 UTC 2023
Summary of changes:
src/views/process-panel/process-resource-card.tsx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
via eaf099867227a9d5198a638205bdcddde7c17965 (commit)
from cb89000d480757f8e0f97f3560c5942d08bcd95a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit eaf099867227a9d5198a638205bdcddde7c17965
Author: Peter Amstutz <peter.amstutz at curii.com>
Date: Fri Jun 16 10:24:32 2023 -0400
Add note that available RAM is limited to requested RAM
closes #20635
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curii.com>
diff --git a/src/views/process-panel/process-resource-card.tsx b/src/views/process-panel/process-resource-card.tsx
index d25d2a21..b39f48ea 100644
--- a/src/views/process-panel/process-resource-card.tsx
+++ b/src/views/process-panel/process-resource-card.tsx
@@ -119,7 +119,7 @@ export const ProcessResourceCard = withStyles(styles)(connect()(
<DetailsAttribute label="Cores" value={process.container?.runtimeConstraints.vcpus} />
</Grid>
<Grid item xs={12}>
- <DetailsAttribute label="RAM" value={formatFileSize(process.container?.runtimeConstraints.ram)} />
+ <DetailsAttribute label="RAM*" value={formatFileSize(process.container?.runtimeConstraints.ram)} />
</Grid>
<Grid item xs={12}>
<DetailsAttribute label="Disk" value={formatFileSize(diskRequest)} />
@@ -214,6 +214,7 @@ export const ProcessResourceCard = withStyles(styles)(connect()(
</Grid>}
</Grid>
</Grid>
+ <Typography>* RAM available to the program is limited to Requested RAM, not Instance RAM</Typography>
</CardContent>
</Card >;
}
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list