Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Feb 19, 2023
1 parent 335be13 commit 9c7d134
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cli/src/test/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ kestra:
type: memory
queue:
type: memory
storage:
type: local
local:
base-path: /tmp/unittest
plugins:
path: /tmp/plugins
repositories:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package io.kestra.repository.memory;

import io.kestra.core.models.topologies.FlowTopology;
import io.kestra.core.repositories.FlowTopologyRepositoryInterface;
import jakarta.inject.Singleton;

import java.util.List;

@Singleton
@MemoryRepositoryEnabled
public class MemoryFlowTopologyRepository implements FlowTopologyRepositoryInterface {

@Override
public List<FlowTopology> findByFlow(String namespace, String flowId, Boolean destinationOnly) {
throw new UnsupportedOperationException();
}

@Override
public FlowTopology save(FlowTopology flowTopology) {
throw new UnsupportedOperationException();
}
}

0 comments on commit 9c7d134

Please sign in to comment.