Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
fix(composer): in bash mode always run job in background
Browse files Browse the repository at this point in the history
  • Loading branch information
hanhxiao committed Jul 16, 2019
1 parent d5bffc1 commit 70ba3fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gnes/composer/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import copy
import random
from collections import defaultdict
from typing import Dict, List, Set
from typing import Dict, List

import pkg_resources
from ruamel.yaml import YAML, StringIO
Expand Down Expand Up @@ -234,7 +234,7 @@ def build_shell(all_layers: List['YamlGraph.Layer'], log_path: str = None) -> st
@staticmethod
def build_mermaid(all_layers: List['YamlGraph.Layer'], show_topdown: bool = True) -> str:
mermaid_graph = []
cls_dict = defaultdict(set) # type: Dict[str, Set]
cls_dict = defaultdict(set)
for l_idx, layer in enumerate(all_layers[1:] + [all_layers[0]], 1):
last_layer = all_layers[l_idx - 1]

Expand Down

0 comments on commit 70ba3fc

Please sign in to comment.