Skip to content

Commit

Permalink
Remove the extra default tenant in workflow save page (#13867)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruanwenjun authored Apr 4, 2023
1 parent 69fc217 commit 6483395
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ export default defineComponent({
label: t.tenantCode,
value: t.tenantCode
}))
.concat({ label: 'default', value: 'default' })
}
return []
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
import org.apache.dolphinscheduler.remote.command.MessageType;
import org.apache.dolphinscheduler.remote.command.task.TaskDispatchMessage;
import org.apache.dolphinscheduler.server.worker.config.WorkerConfig;
import org.apache.dolphinscheduler.server.worker.registry.WorkerRegistryClient;
import org.apache.dolphinscheduler.server.worker.rpc.WorkerMessageSender;
import org.apache.dolphinscheduler.server.worker.rpc.WorkerRpcClient;
import org.apache.dolphinscheduler.server.worker.runner.WorkerManagerThread;
Expand Down Expand Up @@ -64,6 +65,9 @@ public class TaskDispatchProcessorTest {
@Mock
private StorageOperate storageOperate;

@Mock
private WorkerRegistryClient workerRegistryClient;

@Test
public void process() {
Channel channel = Mockito.mock(Channel.class);
Expand Down

0 comments on commit 6483395

Please sign in to comment.