Skip to content

Commit

Permalink
fix logrotate empty file hole issue (#1561)
Browse files Browse the repository at this point in the history
* fix logrotate empty file hole issue
refer to #1554
  • Loading branch information
wnpllrzodiac authored and winlinvip committed Jan 8, 2020
1 parent b5f4b96 commit 459488b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk/src/app/srs_app_log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ void SrsFastLog::open_log_file()

if(fd == -1 && errno == ENOENT) {
fd = open(filename.c_str(),
O_RDWR | O_CREAT | O_TRUNC,
O_RDWR | O_CREAT | O_TRUNC | O_APPEND/*logrotate copytruncate need this flag*/,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH
);
}
Expand Down

0 comments on commit 459488b

Please sign in to comment.