Skip to content

Commit

Permalink
fix api service -> services[0] for archipel UI
Browse files Browse the repository at this point in the history
  • Loading branch information
branciard committed Oct 17, 2020
1 parent 1b5ac03 commit a824f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchestrator/src/routes/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const getOrchestratorInfo = async orchestrator => {
const synchState = await orchestrator.chain.getSyncState();
const currentLeader = await orchestrator.chain.getLeader(orchestrator.group);
const isServiceReadyToStart = await orchestrator.isServiceReadyToStart(orchestrator.mode);
const launchedContainer = await orchestrator.service.checkLaunchedContainer();
const launchedContainer = await orchestrator.services[0].checkLaunchedContainer();

// Constructing info object
const result = {
Expand Down

0 comments on commit a824f1a

Please sign in to comment.