8000 refactor(platform): remove filemanager stack by mmalenic · Pull Request #1000 · umccr/orcabus · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

refactor(platform): remove filemanager stack #1000

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/workload/stateless/statelessStackCollectionClass.ts
80E1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Construct } from 'constructs';
import { Stack, Environment, StackProps } from 'aws-cdk-lib';
import { FilemanagerProps, Filemanager } from './stacks/filemanager/deploy/stack';
import { FilemanagerProps } from './stacks/filemanager/deploy/stack';
import {
BsshIcav2FastqCopyManagerStack,
BsshIcav2FastqCopyManagerStackProps,
Expand Down Expand Up @@ -174,6 +174,11 @@ export class StatelessStackCollection {
// ...statelessConfiguration.sampleSheetCheckerProps,
// });

// new Filemanager(scope, 'FileManagerStack', {
// ...this.createTemplateProps(env, 'FileManagerStack'),
// ...statelessConfiguration.fileManagerStackProps,
// });

this.eventSchemaStack = new SchemaStack(scope, 'EventSchemaStack', {
...this.createTemplateProps(env, 'EventSchemaStack'),
...statelessConfiguration.eventSchemaStackProps,
Expand All @@ -184,11 +189,6 @@ export class StatelessStackCollection {
...statelessConfiguration.dataSchemaStackProps,
});

new Filemanager(scope, 'FileManagerStack', {
...this.createTemplateProps(env, 'FileManagerStack'),
...statelessConfiguration.fileManagerStackProps,
});

this.bsshIcav2FastqCopyManagerStack = new BsshIcav2FastqCopyManagerStack(
scope,
'BsshIcav2FastqCopyManagerStack',
Expand Down
Loading
0