Skip to content

Commit

Permalink
server: db_dump shouldn't export create_time for user_deleted or
Browse files Browse the repository at this point in the history
host_deleted
  • Loading branch information
Kevin Reed committed May 3, 2018
1 parent ae17dfb commit b4f0bae
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions sched/db_dump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -307,11 +307,9 @@ void write_host_deleted(HOST_DELETED& host_deleted, FILE* f) {
"<host>\n"
" <id>%lu</id>\n"
" <host_cpid>%s</host_cpid>\n"
" <create_time>%d</create_time>\n"
"</host>\n",
host_deleted.id,
host_deleted.public_cross_project_id,
host_deleted.create_time
host_deleted.public_cross_project_id
);
}

Expand Down Expand Up @@ -435,11 +433,9 @@ void write_user_deleted(USER_DELETED& user_deleted, FILE* f) {
"<user>\n"
" <id>%lu</id>\n"
" <cpid>%s</cpid>\n"
" <create_time>%d</create_time>\n"
"</user>\n",
user_deleted.id,
user_deleted.public_cross_project_id,
user_deleted.create_time
user_deleted.public_cross_project_id
);
}

Expand Down

0 comments on commit b4f0bae

Please sign in to comment.