Skip to content

Commit

Permalink
minor change so tutorial matches codelab (#3552)
Browse files Browse the repository at this point in the history
  • Loading branch information
leahecole authored Apr 28, 2020
1 parent 6e45bc9 commit da85c84
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion composer/workflows/hadoop_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
'file:///usr/lib/hadoop-mapreduce/hadoop-mapreduce-examples.jar'
)
# Arguments to pass to Cloud Dataproc job.
wordcount_args = ['wordcount', 'gs://pub/shakespeare/rose.txt', output_file]
input_file = 'gs://pub/shakespeare/rose.txt'
wordcount_args = ['wordcount', input_file, output_file]

yesterday = datetime.datetime.combine(
datetime.datetime.today() - datetime.timedelta(1),
Expand Down

0 comments on commit da85c84

Please sign in to comment.