Skip to content

Commit

Permalink
fix: obtain path from executionEngine
Browse files Browse the repository at this point in the history
  • Loading branch information
mosoriob committed Jun 15, 2024
1 parent da1b3f6 commit 661e954
Show file tree
Hide file tree
Showing 3 changed files with 693 additions and 490 deletions.
2 changes: 1 addition & 1 deletion src/app/reducers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface MintPreferences {
ensemble_manager_api: string;
ingestion_api: string;
visualization_url: string;
execution_engine?: 'wings' | 'localex';
execution_engine?: string;
// Local Execution
localex?: LocalExecutionPreferences;
// Wings Execution
Expand Down
2 changes: 1 addition & 1 deletion src/screens/modeling/reducers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export interface Execution {
runid?: string;
start_time: Date;
end_time?: Date;
execution_engine?: 'wings' | 'localex';
execution_engine?: string;
status: 'FAILURE' | 'SUCCESS' | 'RUNNING' | 'WAITING';
run_progress?: number; // 0 to 100 (percentage done)
results: any[]; // Chosen results after completed run
Expand Down
Loading

0 comments on commit 661e954

Please sign in to comment.