Skip to content

Commit

Permalink
fix compile release failure
Browse files Browse the repository at this point in the history
  • Loading branch information
xu-chaojie authored and YunhuiChen committed Jul 20, 2022
1 parent ecd12c6 commit fc1837c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/client/fake/mds_workflow_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ int main(int argc, char ** argv) {
"chunkserverEnableAppliedIndexRead=1\n"\
"logLevel=0";

int fd_ = open(configpath.c_str(), O_CREAT | O_RDWR);
int fd_ = open(configpath.c_str(), O_CREAT | O_RDWR, 0644);
int len = write(fd_, config.c_str(), config.length());
close(fd_);

Expand Down

0 comments on commit fc1837c

Please sign in to comment.