Skip to content

Commit

Permalink
Rename queue run to queue watch to match other projects terminology
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Aug 17, 2023
1 parent 0ae4b65 commit 35070d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Some things are not yet fully fleshed out:
To start the queue processing functionality:

```sh
dotnet run -- queue run
dotnet run -- queue watch
```

To reprocess pp of all scores:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

namespace osu.Server.Queues.ScoreStatisticsProcessor.Commands.Queue
{
[Command("run", Description = "Begins processing of the queue.")]
public class RunQueueCommand : BaseCommand
[Command("watch", Description = "Begins processing of the queue.")]
public class WatchQueueCommand : BaseCommand
{
public Task<int> OnExecuteAsync(CancellationToken cancellationToken)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace osu.Server.Queues.ScoreStatisticsProcessor.Commands
[Subcommand(typeof(PumpTestDataCommand))]
[Subcommand(typeof(PumpAllScoresCommand))]
[Subcommand(typeof(ClearQueueCommand))]
[Subcommand(typeof(RunQueueCommand))]
[Subcommand(typeof(WatchQueueCommand))]
[Subcommand(typeof(ImportHighScoresCommand))]
public sealed class QueueCommands
{
Expand Down

0 comments on commit 35070d1

Please sign in to comment.