mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-4.1' into cassandra-5.0
This commit is contained in:
commit
1902195d99
|
|
@ -42,6 +42,7 @@ Merged from 4.1:
|
|||
* Memoize Cassandra verion and add a backoff interval for failed schema pulls (CASSANDRA-18902)
|
||||
* Fix StackOverflowError on ALTER after many previous schema changes (CASSANDRA-19166)
|
||||
Merged from 4.0:
|
||||
* Bring Redhat packge dirs/ownership/perms in line with Debian package (CASSANDRA-19565)
|
||||
* Make nodetool import congruent with the documentation by not relying on the folder structure of the imported SSTable files (CASSANDRA-19401)
|
||||
* IR may leak SSTables with pending repair when coming from streaming (CASSANDRA-19182)
|
||||
* Streaming exception race creates corrupt transaction log files that prevent restart (CASSANDRA-18736)
|
||||
|
|
|
|||
|
|
@ -85,10 +85,7 @@ mkdir -p %{buildroot}/%{_sysconfdir}/security/limits.d
|
|||
mkdir -p %{buildroot}/%{_sysconfdir}/default
|
||||
mkdir -p %{buildroot}/usr/sbin
|
||||
mkdir -p %{buildroot}/usr/bin
|
||||
mkdir -p %{buildroot}/var/lib/%{username}/commitlog
|
||||
mkdir -p %{buildroot}/var/lib/%{username}/data
|
||||
mkdir -p %{buildroot}/var/lib/%{username}/saved_caches
|
||||
mkdir -p %{buildroot}/var/lib/%{username}/hints
|
||||
mkdir -p %{buildroot}/var/lib/%{username}
|
||||
mkdir -p %{buildroot}/var/run/%{username}
|
||||
mkdir -p %{buildroot}/var/log/%{username}
|
||||
( cd pylib && %{__python} setup.py install --no-compile --root %{buildroot}; )
|
||||
|
|
@ -164,9 +161,9 @@ exit 0
|
|||
%{_sysconfdir}/security/limits.d/%{username}.conf
|
||||
/usr/share/%{username}*
|
||||
%config(noreplace) /%{_sysconfdir}/%{username}
|
||||
%attr(750,%{username},%{username}) %config(noreplace) /var/lib/%{username}/*
|
||||
%attr(750,%{username},%{username}) /var/log/%{username}*
|
||||
%attr(750,%{username},%{username}) /var/run/%{username}*
|
||||
%attr(755,%{username},%{username}) %config(noreplace) /var/lib/%{username}
|
||||
%attr(755,%{username},%{username}) /var/log/%{username}*
|
||||
%attr(755,%{username},%{username}) /var/run/%{username}*
|
||||
%{python_sitelib}/cqlshlib/
|
||||
%{python_sitelib}/cassandra_pylib*.egg-info
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue