-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes in Makefile and expirationd.lua #71
Conversation
Running testing by default on running make would be more useful than showing a message about empty target.
3a35f09
to
4be9cd0
Compare
- move a list of files to remove to a variable - remove tarantool.log too - added a separate `clean` target
See sources in [1] and [2]. 1. tarantool/tarantool#2040 2. https://www.tarantool.io/en/doc/1.6/whats_new/
box.cfg.logger is deprecated option
4be9cd0
to
6dcc96b
Compare
6dcc96b
to
eac1e0a
Compare
@@ -1,3 +1,8 @@ | |||
CLEANUP_FILES = tarantool.log | |||
CLEANUP_FILES += *.xlog* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- A typo (
*.xlog*
->*.xlog
)? - How about
*.vylog
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I kept all file masks as is, but moved them to a separate variable. However 1 and 2 are good points. I think we can address it in #76. Vinyl tests are broken and I think it's a reason why *.vylog
is not there.
- [expirationd](https://github.com/tarantool/expirationd/issues/53) always | ||
expires tuples without using indices but using any condition, without guarantee | ||
for time expiration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably yes. Although proposed table is good enough to make an opinion about these projects.
Follows up tarantool#71
No description provided.