[GH-ISSUE #1641] bug upgradgin to v23 #389

Closed
opened 2026-03-07 20:48:40 +03:00 by kerem · 0 comments
Owner

Originally created by @pmpetit on GitHub (May 4, 2023).
Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/1641

Describe the bug
i have changed version from v22.0.2 to v23.0.3

To Reproduce
Steps to reproduce the behavior:
from version v22.0.2, use this configuration file


{
        server: {
            serverPort: 8978,

            workspaceLocation: "workspace",
            contentRoot: "web",
            driversLocation: "drivers",

            rootURI: "/",
            serviceURI: "/api/",

            productConfiguration: "conf/product.conf",

            expireSessionAfterPeriod: 1200000,

            develMode: false,
            database: {
                driver="h2_embedded",
                url: "jdbc:h2:${workspace}/.data/cb.h2.dat",

                createDatabase: true,

                initialDataConfiguration: "conf/initial-data.conf",

                pool: {
                    minIdleConnections: 1,
                    maxIdleConnections: 5,
                    maxConnections: 10,
                    validationQuery: "SELECT 1"
                }
            }

        },
        app: {
            anonymousAccessEnabled: true,
            anonymousUserRole: "user",
            supportsCustomConnections: true,
            authenticationEnabled: false,

            forwardProxy: true,

            publicCredentialsSaveEnabled: false,
            adminCredentialsSaveEnabled: false,

            resourceManagerEnabled: true,

            resourceQuotas: {
                dataExportFileSizeLimit: 10000000,
                resourceManagerFileSizeLimit: 500000,
                sqlMaxRunningQueries: 100,
                sqlResultSetRowsLimit: 100000,
                sqlResultSetMemoryLimit: 2000000,
                sqlTextPreviewMaxLength: 4096,
                sqlBinaryPreviewMaxLength: 261120
            },
            enabledAuthProviders: [
                "local"
            ],

            disabledDrivers: [
                "sqlite:sqlite_jdbc",
                "h2:h2_embedded",
                "clickhouse:yandex_clickhouse"
            ]

        }
    }
}

then change to version v23.0.3, using your default configuration file with this change

          database: {
              driver="h2_embedded_v2",
              url: "jdbc:h2:${workspace}/.data/cb.h2v2.dat",
}

Screenshots
image

Desktop (please complete the following information):

  • OS: docker
  • Version [e.g. 22]

Additional context
Add any other context about the problem here, e.g. error log.

Originally created by @pmpetit on GitHub (May 4, 2023). Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/1641 **Describe the bug** i have changed version from v22.0.2 to v23.0.3 **To Reproduce** Steps to reproduce the behavior: from version v22.0.2, use this configuration file ```json { server: { serverPort: 8978, workspaceLocation: "workspace", contentRoot: "web", driversLocation: "drivers", rootURI: "/", serviceURI: "/api/", productConfiguration: "conf/product.conf", expireSessionAfterPeriod: 1200000, develMode: false, database: { driver="h2_embedded", url: "jdbc:h2:${workspace}/.data/cb.h2.dat", createDatabase: true, initialDataConfiguration: "conf/initial-data.conf", pool: { minIdleConnections: 1, maxIdleConnections: 5, maxConnections: 10, validationQuery: "SELECT 1" } } }, app: { anonymousAccessEnabled: true, anonymousUserRole: "user", supportsCustomConnections: true, authenticationEnabled: false, forwardProxy: true, publicCredentialsSaveEnabled: false, adminCredentialsSaveEnabled: false, resourceManagerEnabled: true, resourceQuotas: { dataExportFileSizeLimit: 10000000, resourceManagerFileSizeLimit: 500000, sqlMaxRunningQueries: 100, sqlResultSetRowsLimit: 100000, sqlResultSetMemoryLimit: 2000000, sqlTextPreviewMaxLength: 4096, sqlBinaryPreviewMaxLength: 261120 }, enabledAuthProviders: [ "local" ], disabledDrivers: [ "sqlite:sqlite_jdbc", "h2:h2_embedded", "clickhouse:yandex_clickhouse" ] } } } ``` then change to version v23.0.3, using your default configuration file with this change ```json database: { driver="h2_embedded_v2", url: "jdbc:h2:${workspace}/.data/cb.h2v2.dat", } ``` **Screenshots** <img width="1019" alt="image" src="https://user-images.githubusercontent.com/4059185/236160073-0c93fadb-7fb1-451a-8800-44223da291c4.png"> **Desktop (please complete the following information):** - OS: docker - Version [e.g. 22] **Additional context** Add any other context about the problem here, e.g. error log.
kerem 2026-03-07 20:48:40 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cloudbeaver#389
No description provided.