Skip to content
Merged
Show file tree
Hide file tree
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

This file was deleted.

This file was deleted.

5 changes: 4 additions & 1 deletion emucomp-api/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,7 @@ quarkus:
health:
enabled: true
host: 0.0.0.0
port: 9000
port: 9000
kubernetes-client:
devservices:
enabled: false
14 changes: 0 additions & 14 deletions emucomp-grpc-interface/src/main/proto/ContainerInterface.proto

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@
import de.bwl.bwfla.emucomp.template.BlobDescription;
import de.bwl.bwfla.emucomp.template.BlobHandle;
import de.bwl.bwfla.emucomp.xpra.IAudioStreamer;
import de.bwl.bwfla.emucomp.xpra.PulseAudioStreamer;
import de.bwl.bwfla.emucomp.xpra.XpraUtils;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.io.FileUtils;
import org.eclipse.microprofile.config.Config;
import org.eclipse.microprofile.config.ConfigProvider;
import org.eclipse.microprofile.config.inject.ConfigProperty;
import org.glyptodon.guacamole.GuacamoleException;
Expand Down Expand Up @@ -83,7 +78,6 @@
/**
* @author iv1004
*/
@Slf4j
public abstract class EmulatorBean extends EaasComponentBean implements EmulatorComponent {
private EmulatorBeanMode emuBeanMode;

Expand Down Expand Up @@ -825,12 +819,6 @@ private void startBackend() throws BWFLAException, IOException {
this.addControlConnector(new XpraConnector(this.getXpraSocketPath()));
}

if (this.isPulseAudioEnabled()) {
final String cid = this.getComponentId();
final Path pulsesock = this.getPulseAudioSocketPath();
this.addControlConnector(new AudioConnector(() -> new PulseAudioStreamer(cid, pulsesock)));
}

this.addControlConnector(new StdoutLogConnector(emuRunner.getStdOutPath()));
this.addControlConnector(new StderrLogConnector(emuRunner.getStdErrPath()));

Expand Down
Loading
Loading