Skip to content

Commit

Permalink
[identity] remove PopulateDB subcommand from identity service
Browse files Browse the repository at this point in the history
Summary: we don't need this command anymore since we double write reserved users from the keyserver

Test Plan: cargo build

Reviewers: bartek

Reviewed By: bartek

Subscribers: ashoat, tomek

Differential Revision: https://phab.comm.dev/D10293
  • Loading branch information
vdhanan committed Dec 12, 2023
1 parent 7ee32de commit 50cccc3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions services/identity/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ pub enum Command {
#[arg(default_value = SECRETS_DIRECTORY)]
dir: String,
},
/// Populates the `identity-users` table in DynamoDB from MySQL
PopulateDB,
}

#[derive(Clone)]
Expand Down
1 change: 0 additions & 1 deletion services/identity/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.serve(addr)
.await?;
}
Command::PopulateDB => unimplemented!(),
}

Ok(())
Expand Down

0 comments on commit 50cccc3

Please sign in to comment.