Skip to content

Commit

Permalink
Merge pull request #14186 from mraible/remove-couchbase
Browse files Browse the repository at this point in the history
Disable Couchbase and move WebFlux and Infinispan out of beta
  • Loading branch information
pascalgrimaud committed Mar 10, 2021
2 parents 7f052f6 + 20e5815 commit c3930c3
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions generators/server/prompts.js
Expand Up @@ -44,7 +44,7 @@ function askForServerSideOpts() {
when: () => ['monolith', 'microservice'].includes(applicationType),
type: 'confirm',
name: 'reactive',
message: '[Beta] Do you want to make it reactive with Spring WebFlux?',
message: 'Do you want to make it reactive with Spring WebFlux?',
default: serverDefaultConfig.reactive,
},
{
Expand Down Expand Up @@ -143,10 +143,11 @@ function askForServerSideOpts() {
name: 'Cassandra',
});
}
opts.push({
// Couchbase is broken, see https://github.com/jhipster/generator-jhipster/pull/14184 for more information.
/* opts.push({
value: 'couchbase',
name: '[BROKEN] Couchbase',
});
name: 'Couchbase',
}); */
opts.push({
value: 'neo4j',
name: '[BETA] Neo4j',
Expand Down Expand Up @@ -205,7 +206,7 @@ function askForServerSideOpts() {
},
{
value: 'infinispan',
name: '[BETA] Infinispan (hybrid cache, for multiple nodes)',
name: 'Infinispan (hybrid cache, for multiple nodes)',
},
{
value: 'memcached',
Expand Down

0 comments on commit c3930c3

Please sign in to comment.