Skip to content

Commit

Permalink
[derived nodes][xs]: remove "_processing" from resource names
Browse files Browse the repository at this point in the history
  • Loading branch information
zelima committed Mar 6, 2018
1 parent d7a8caf commit 58b6070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planner/nodes/basic_nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def get_artifacts(self):
for artifact in self.available_artifacts:
if artifact.datahub_type == 'source/tabular':
datahub_type = 'derived/{}'.format(self.fmt)
resource_name = artifact.resource_name + '_{}'.format(self.fmt)
resource_name = artifact.resource_name.replace('_processing', '') + '_{}'.format(self.fmt)
file_path = 'data/{}.{}'.format(resource_name, self.fmt)
content_type, _ = guess_type(file_path)
output = ProcessingArtifact(
Expand Down

0 comments on commit 58b6070

Please sign in to comment.