Merge branch 'keydbpro' into PRO_RELEASE_6

Former-commit-id: 6b6a1c711dbb7786e30be29e2d1930582037f7f9
This commit is contained in:
John Sully 2020-04-22 01:06:24 -04:00
commit a9b56bfb2f
2 changed files with 4 additions and 10 deletions

View File

@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
with: with:
submodules: true submodules: true
- name: make - name: make
run: | run: |
@ -22,18 +22,10 @@ jobs:
runs-on: ubuntu-16.04 runs-on: ubuntu-16.04
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
with: with:
submodules: true submodules: true
- name: make - name: make
run: | run: |
sudo apt-get install uuid-dev libcurl4-openssl-dev sudo apt-get install uuid-dev libcurl4-openssl-dev
make make
build-macos-latest:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: make
run: make

View File

@ -5129,8 +5129,10 @@ void redisAsciiArt(void) {
if (cserver.license_key == nullptr) if (cserver.license_key == nullptr)
{ {
#ifndef NO_LICENSE_CHECK
serverLog(LL_WARNING, "!!!! KeyDB Pro is being run in trial mode !!!!"); serverLog(LL_WARNING, "!!!! KeyDB Pro is being run in trial mode !!!!");
serverLog(LL_WARNING, "!!!! Execution will terminate in %d minutes !!!!", cserver.trial_timeout); serverLog(LL_WARNING, "!!!! Execution will terminate in %d minutes !!!!", cserver.trial_timeout);
#endif
} }
zfree(buf); zfree(buf);
} }