We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e501cd commit da04745Copy full SHA for da04745
tmc-langs-cli/src/main.rs
@@ -284,7 +284,7 @@ fn run() -> Result<()> {
284
.takes_value(true)))
285
286
.subcommand(SubCommand::with_name("wait-for-submission")
287
- .about("Submit exercise.")
+ .about("Wait for a submission to finish.")
288
.arg(Arg::with_name("submission-url")
289
.long("submission-url")
290
.required(true)
tmc-langs-core/src/tmc_core.rs
@@ -394,7 +394,6 @@ impl TmcCore {
394
match self.check_submission(submission_url)? {
395
SubmissionProcessingStatus::Finished(f) => return Ok(*f),
396
SubmissionProcessingStatus::Processing(_p) => {
397
- // todo: report status
398
thread::sleep(Duration::from_secs(1));
399
}
400
0 commit comments