X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/bdcaea37455b72c345c7305e6a7bc4ba63d5c1b7..b7589d1ba97904174ba427e245d35998d23c6b70:/src/views/process-panel/process-panel-root.tsx?ds=sidebyside diff --git a/src/views/process-panel/process-panel-root.tsx b/src/views/process-panel/process-panel-root.tsx index d4c8d9375d..d019d1418f 100644 --- a/src/views/process-panel/process-panel-root.tsx +++ b/src/views/process-panel/process-panel-root.tsx @@ -61,6 +61,7 @@ export interface ProcessPanelRootActionProps { loadNodeJson: (containerRequest: ContainerRequestResource) => void; loadOutputDefinitions: (containerRequest: ContainerRequestResource) => void; updateOutputParams: () => void; + pollProcessLogs: (processUuid: string) => Promise; } export type ProcessPanelRootProps = ProcessPanelRootDataProps & ProcessPanelRootActionProps & WithStyles; @@ -161,6 +162,7 @@ export const ProcessPanelRoot = withStyles(styles)( filters={processLogsPanel.filters.map(filter => ({ label: filter, value: filter }))} onLogFilterChange={props.onLogFilterChange} navigateToLog={props.navigateToLog} + pollProcessLogs={props.pollProcessLogs} />