summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fixes to testsjenkins-more-elixir-fixesGarren Smith2019-02-252-6/+11
|
* Send correct 400 for missing partition with _find (#1936)garren smith2019-02-252-0/+28
| | | | | | | | When sending an incorrect partition query e.g: /parition/_find, send a 400 with the message: Partition must not start with an underscore This makes it consistent with all the other partition requests
* Merge pull request #1933 from cloudant/fix-compilation-warningsiilyak2019-02-221-1/+1
|\ | | | | Remove compilation warnings
| * Remove compilation warningsILYA Khlopotov2019-02-221-1/+1
|/
* Merge pull request #1932 from apache/update-config-depPeng Hui Jiang2019-02-221-1/+1
|\ | | | | Update config dependency to 2.1.6
| * Update config dependency to 2.1.6update-config-depjiangph2019-02-221-1/+1
|/ | | | This allows to keep features on config process restart
* Fix elixir tests on Jenkins (#1931)garren smith2019-02-2114-86/+141
| | | | | | | | | fix flaky elixir tests on jenkins * Add retry_until to some flaky tests. * Add skip_on_jenkins tag for tests that won't pass with retry_until but pass on Travis. * set jenkins timeout to 90 minutes
* Merge pull request #1925 from apache/allow-list-for-purge-docidPeng Hui Jiang2019-02-212-3/+74
|\ | | | | Support list for docid when using couch_db:purge_docs/3
| * Support list for docid when using couch_db:purge_docs/3jiangph2019-02-212-3/+74
|/ | | | | The default type for docid is binary, and this change is to extend to support list for docid when using couch_db:purge_docs/3.
* Fix elixir tests and add back to make check (#1918)garren smith2019-02-159-53/+76
| | | | | | * Add back elixir tests to make check * Fix reliability of the flaky elixir tests
* Merge pull request #1642 from ↵iilyak2019-02-146-15/+271
|\ | | | | | | | | cloudant/91984-set-io_priority-for-couch-index-pids Set io_priority for couch_index pids
| * Set io_priority for couch_index pidsILYA Khlopotov2019-02-146-15/+271
|/
* Merge pull request #1803 from cloudant/configurable-auth-saltJay Doane2019-02-121-0/+66
|\ | | | | Sync admin passwords at cluster setup finish
| * Sync admin password hashes at cluster setup finishJay Doane2019-02-121-0/+66
|/ | | | | | This ensures that admin password hashes are the same on all nodes when passwords are set directly on each node rather than through the coordinator node.
* Merge pull request #1910 from apache/import-cloudant-kenRobert Newson2019-02-072-0/+3
|\ | | | | Import ken from cloudant
| * Import kenimport-cloudant-kenRobert Newson2019-02-072-0/+3
|/
* Add check for repeated `partition` definitionsGarren Smith2019-02-072-1/+17
| | | | | | | | | | This is a usability improvement. If someone specifies the a `partition` value in the query string that is different than the `partition` value in the URL path it is not clear which value would be used. This allows specifying it in both places as long as the query string matches the URL path and throws a 400 Bad Request error otherwise. Co-Authored-By: Garren Smith <garren.smith@gmail.com>
* fix couchup for python3 (#1905)Clemens Stolle2019-02-071-1/+3
|
* Merge pull request #1904 from apache/import-smooshRobert Newson2019-02-068-1085/+11
|\ | | | | Import smoosh from Cloudant
| * remove elixir tests from 'make check' until they are reliableRobert Newson2019-02-061-1/+0
| |
| * run formatting check before time-consuming testsRobert Newson2019-02-061-1/+1
| |
| * Import smoosh from CloudantRobert Newson2019-02-067-1083/+10
|/ | | | Remove couch_compaction_daemon and related tests too.
* Force mix rebar/hex/deps get on make elixir (#1894)Joan Touzet2019-02-052-6/+14
|
* Merge pull request #1901 from apache/fix-doc-update-invalid-rev-crashEric Avdey2019-02-052-5/+24
|\ | | | | Fix `badarg` crash on an invalid revision for individual doc update
| * Fix badarg crash on invalid rev for individual doc updatefix-doc-update-invalid-rev-crashEric Avdey2019-02-042-5/+24
|/
* Fix from_json_obj_validate crash when provided rev isn't a valid hexEric Avdey2019-02-042-3/+16
|
* Make from_json_error_cases tests idiomaticEric Avdey2019-02-041-10/+6
|
* Merge pull request #1889 from apache/import-cloudant-ioqRobert Newson2019-02-014-20/+15
|\ | | | | Import IOQ from Cloudant
| * We don't need to verify that erlang:garbage_collect() worksimport-cloudant-ioqRobert Newson2019-02-011-16/+1
| |
| * increase timeout on testRobert Newson2019-02-011-1/+1
| |
| * Run each apps test in a separate processRobert Newson2019-02-011-3/+10
| | | | | | | | This reduces non-causal test failures between apps.
| * Import IOQ from CloudantRobert Newson2019-02-012-1/+4
|/
* add w:3 for lots of docs test (#1893)garren smith2019-02-011-1/+1
|
* formatGarren Smith2019-01-311-1/+5
|
* Add junit formatterGarren Smith2019-01-313-2/+4
| | | | Add the junit formatter so that Jenkins can read the elixir tests
* Change elixir test failing on travisGarren Smith2019-01-311-1/+4
|
* add elixir tests to travisGarren Smith2019-01-313-2/+9
| | | | | Add the elixir test to `make check` and change the build language in travis from erlang to elixir.
* Change enviromental variables not to clash with travisGarren Smith2019-01-312-4/+4
| | | | | Creates EX_USERNAME, EX_PASSWORD and EX_COUCH_URL to manage the elixir test setup.
* fix credo and formatting issues of elixir testsGarren Smith2019-01-319-47/+79
|
* Compaction: Add snooze_period_ms for finer tuning (#1880)Adrien Vergé2019-01-303-8/+72
| | | | | This commit introduces a new option `snooze_period_ms` (measured in milliseconds), and deprecates `snooze_period` while still supporting it for obvious legacy reasons.
* Merge pull request #1886 from apache/fix-pq-db-header-versionPeng Hui Jiang2019-01-3011-165/+41
|\ | | | | Fix partitioned query database header version
| * Fix engine header upgradesfix-pq-db-header-versionPaul J. Davis2019-01-3011-165/+41
|/
* Make it possible to override elixir couchdb settings via environmental variablesGarren Smith2019-01-302-3/+15
|
* Merge pull request #1877 from apache/restrict-purge-adminPeng Hui Jiang2019-01-292-1/+64
|\ | | | | restrict _purge to server admin
| * restrict _purge to server adminrestrict-purge-adminjiangph2019-01-292-1/+64
|/ | | | | | | This restrict _purge and _purged_infos_limit to server admin in terms of the security level required to run them. Fixes #1799
* rename partitions feature to partitioned featureGarren Smith2019-01-281-1/+1
|
* Update config dependency to 2.1.5Nick Vatamaniuc2019-01-241-1/+1
| | | | This fixes inability to set keys with regex symbols in them
* fix test url to fix testGarren Smith2019-01-241-1/+1
|
* Shift to new GH multi-template issue workflow (#1872)Joan Touzet2019-01-234-32/+144
|
* Implement customizable chttpd statisticsPaul J. Davis2019-01-235-18/+206
|