-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix duplicate execution during bulk input on delegated command (#133)
Commands that delegate to other commands were passing the bulk input flag through to the subcommand. Since the command being delegated to is executed in a way that includes re-initialization, this would re-run the entire bulk input again for each entry in the bulk input file. To fix this, that flag is now filtered out when running each command for the bulk input file, to ensure that no such recursion is possible.
- Loading branch information
Matt Willer
authored
Apr 10, 2019
1 parent
8fc2023
commit ba3d65a
Showing
3 changed files
with
53 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
id,login | ||
11111,mario@example.com | ||
22222,wario@example.com | ||
33333,peach@example.com |