Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stage #140

Merged
merged 3 commits into from
Dec 8, 2023
Merged

Stage #140

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
9 changes: 8 additions & 1 deletion simulator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,11 @@ Create and run docker image
```bash
docker build -f Dockerfile -t kwoksim .
docker run -v /var/run/docker.sock:/var/run/docker.sock kwoksim
```
```

# Troubleshooting

## Known issues
Experienced problems using Rancher desktop. The program did not successfully start required containers.
Try using Docker desktop

3 changes: 2 additions & 1 deletion simulator/kwoksim.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ def load_workflow(self, workflow_file: str):
"""
ifile = Path(workflow_file)
self.workflow = yaml.load(open(ifile), Loader=yaml.FullLoader)
self.workflow4kwok = self._modify_workflow_for_kwok(ifile)
# self.workflow4kwok = self._modify_workflow_for_kwok(ifile)
self.workflow4kwok = self.workflow

def _modify_workflow_for_kwok(self, ifile: Path):
"""
Expand Down
Loading