Skip to content

Commit

Permalink
making location a list
Browse files Browse the repository at this point in the history
  • Loading branch information
fschlimb committed Jul 22, 2021
1 parent 24ca13f commit 4a2727d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heat/cw4heat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def __partitioned__(self):
# Provide all data as handle/reference
futures = _runner.publish(self._handle._id, _runner.distributor)
for i, p in enumerate(parts["partitions"].values()):
p["location"] = futures[i][0]
p["location"] = [futures[i][0]]
p["data"] = futures[i][1]
# set getter
parts["get"] = _runner.get
Expand Down

0 comments on commit 4a2727d

Please sign in to comment.