Progress should be 0

This commit is contained in:
Rafal Wojdyla 2016-09-30 00:10:28 -04:00
parent 7b54e49d04
commit 99a7daa6ce
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ Please refer to [Scio wiki](https://github.com/spotify/scio/wiki) for more compl
### Progress
There can be only one paragraph running at a time. There is no notion of overall progress - the progress indicator will state `42`, which is just a magic number.
There can be only one paragraph running at a time. There is no notion of overall progress, thus progress bar will be `0`.
### SCollection display helpers

View file

@ -192,7 +192,7 @@ class ScioInterpreter(property: Properties) extends Interpreter(property) {
override def getProgress(context: InterpreterContext): Int = {
// not implemented
42
0
}
}