Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. Vaultwarden
  3. no password when update to 1.11.0

no password when update to 1.11.0

Scheduled Pinned Locked Moved Solved Vaultwarden
40 Posts 12 Posters 5.6k Views 12 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • luckowL luckow

    @luckow I'm not alone -> https://github.com/dani-garcia/vaultwarden/issues/2958#issuecomment-1336718098

    potemkin_aiP Offline
    potemkin_aiP Offline
    potemkin_ai
    wrote on last edited by
    #16

    @luckow thanks for digging this out - I just realized I have vaultwarden broken since the latest update, which is happened at 24th of Dec for me.

    Here is the short instructions and extract based on @luckow findings:

    On Web GUI:

    • go the app
    • click terminal

    Now on the terminal:

    echo ${CLOUDRON_MYSQL_DATABASE} # note the output - it's 35629ca3ac8992ec in my case
    mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE}
    

    Now starts making database voddoo - make sure you have database backup first.

    SELECT * FROM information_schema.SCHEMATA WHERE schema_name = "35629ca3ac8992ec";
    SELECT CONCAT('ALTER TABLE `', TABLE_NAME,'` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;')   
        AS CharSetConvert
        FROM INFORMATION_SCHEMA.TABLES
        WHERE TABLE_SCHEMA="35629ca3ac8992ec"
        AND TABLE_TYPE="BASE TABLE";
    ALTER DATABASE `35629ca3ac8992ec` CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    SET foreign_key_checks = 0;
    /* execute all queries from CharSetConvert output earlier here */
    ALTER TABLE `__diesel_schema_migrations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `attachments` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `ciphers` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `ciphers_collections` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `collections` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `collections_groups` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `devices` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `emergency_access` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `event` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `favorites` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `folders` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `folders_ciphers` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `groups` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `groups_users` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `invitations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `org_policies` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `organizations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `sends` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `twofactor` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `twofactor_incomplete` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `users` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `users_collections` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    ALTER TABLE `users_organizations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
    SET foreign_key_checks = 1; /* verify CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci is on the place */
    

    Now restart the app (via big button at the top of the terminal).

    @girish , guess Vaultwarden 1.27.0 is a braking change and/or the patch before updating is required (as per above).

    jdaviescoatesJ 1 Reply Last reply
    5
    • potemkin_aiP potemkin_ai

      @luckow thanks for digging this out - I just realized I have vaultwarden broken since the latest update, which is happened at 24th of Dec for me.

      Here is the short instructions and extract based on @luckow findings:

      On Web GUI:

      • go the app
      • click terminal

      Now on the terminal:

      echo ${CLOUDRON_MYSQL_DATABASE} # note the output - it's 35629ca3ac8992ec in my case
      mysql --user=${CLOUDRON_MYSQL_USERNAME} --password=${CLOUDRON_MYSQL_PASSWORD} --host=${CLOUDRON_MYSQL_HOST} ${CLOUDRON_MYSQL_DATABASE}
      

      Now starts making database voddoo - make sure you have database backup first.

      SELECT * FROM information_schema.SCHEMATA WHERE schema_name = "35629ca3ac8992ec";
      SELECT CONCAT('ALTER TABLE `', TABLE_NAME,'` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;')   
          AS CharSetConvert
          FROM INFORMATION_SCHEMA.TABLES
          WHERE TABLE_SCHEMA="35629ca3ac8992ec"
          AND TABLE_TYPE="BASE TABLE";
      ALTER DATABASE `35629ca3ac8992ec` CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      SET foreign_key_checks = 0;
      /* execute all queries from CharSetConvert output earlier here */
      ALTER TABLE `__diesel_schema_migrations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `attachments` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `ciphers` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `ciphers_collections` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `collections` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `collections_groups` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `devices` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `emergency_access` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `event` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `favorites` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `folders` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `folders_ciphers` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `groups` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `groups_users` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `invitations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `org_policies` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `organizations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `sends` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `twofactor` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `twofactor_incomplete` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `users` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `users_collections` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      ALTER TABLE `users_organizations` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;
      SET foreign_key_checks = 1; /* verify CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci is on the place */
      

      Now restart the app (via big button at the top of the terminal).

      @girish , guess Vaultwarden 1.27.0 is a braking change and/or the patch before updating is required (as per above).

      jdaviescoatesJ Offline
      jdaviescoatesJ Offline
      jdaviescoates
      wrote on last edited by
      #17

      @potemkin_ai I wonder why I seemingly haven't hit this issue though 🤔

      I use Cloudron with Gandi & Hetzner

      potemkin_aiP necrevistonnezrN 2 Replies Last reply
      0
      • jdaviescoatesJ jdaviescoates

        @potemkin_ai I wonder why I seemingly haven't hit this issue though 🤔

        potemkin_aiP Offline
        potemkin_aiP Offline
        potemkin_ai
        wrote on last edited by
        #18

        @jdaviescoates random thought: how old is your cloudron instance?
        Mine is from the around of the middle of the year 2022, migrated via export/import from an older one.

        jdaviescoatesJ luckowL 2 Replies Last reply
        1
        • potemkin_aiP potemkin_ai

          @jdaviescoates random thought: how old is your cloudron instance?
          Mine is from the around of the middle of the year 2022, migrated via export/import from an older one.

          jdaviescoatesJ Offline
          jdaviescoatesJ Offline
          jdaviescoates
          wrote on last edited by
          #19

          @potemkin_ai I quite recently (Nov 2022) migrated to a new server, so I guess it's pretty new.

          I'm also on Ubuntu 20.04.5 LTS, you?

          I use Cloudron with Gandi & Hetzner

          potemkin_aiP 1 Reply Last reply
          0
          • potemkin_aiP potemkin_ai

            @jdaviescoates random thought: how old is your cloudron instance?
            Mine is from the around of the middle of the year 2022, migrated via export/import from an older one.

            luckowL Offline
            luckowL Offline
            luckow
            translator
            wrote on last edited by
            #20

            @potemkin_ai good question 🙂
            i recently installed cloudron on a fresh
            "Welcome to Ubuntu 22.04.1 LTS (GNU/Linux 5.15.0-56-generic x86_64)" instance installed at hetzner.

            Pronouns: he/him | Primary language: German

            1 Reply Last reply
            1
            • jdaviescoatesJ jdaviescoates

              @potemkin_ai I wonder why I seemingly haven't hit this issue though 🤔

              necrevistonnezrN Offline
              necrevistonnezrN Offline
              necrevistonnezr
              wrote on last edited by necrevistonnezr
              #21

              @jdaviescoates said in no password when update to 1.11.0:

              @potemkin_ai I wonder why I seemingly haven't hit this issue though 🤔

              Me neither. My instance is 4-5 years old including Ubuntu migrations from 18.04 -> 20.04 -> 22.04, had Bitwarden since the beginning incl. organizations.

              1 Reply Last reply
              2
              • jdaviescoatesJ jdaviescoates

                @potemkin_ai I quite recently (Nov 2022) migrated to a new server, so I guess it's pretty new.

                I'm also on Ubuntu 20.04.5 LTS, you?

                potemkin_aiP Offline
                potemkin_aiP Offline
                potemkin_ai
                wrote on last edited by
                #22

                @jdaviescoates , @luckow , @necrevistonnezr , it was just a wild guess - it feels like it must be somehow connected to the software updates, since it impact only a small fraction of the users.

                Might be just some random bug... 🤷

                1 Reply Last reply
                1
                • girishG Offline
                  girishG Offline
                  girish
                  Staff
                  wrote on last edited by
                  #23

                  Our company and my personal installation is quite old as well (~4 years or so). I wonder why we don't hit this. Let me investigate quickly to see if this is something obvious.

                  potemkin_aiP 1 Reply Last reply
                  0
                  • girishG girish

                    Our company and my personal installation is quite old as well (~4 years or so). I wonder why we don't hit this. Let me investigate quickly to see if this is something obvious.

                    potemkin_aiP Offline
                    potemkin_aiP Offline
                    potemkin_ai
                    wrote on last edited by
                    #24

                    @girish thanks for prompt reaction!

                    1 Reply Last reply
                    0
                    • luckowL luckow

                      @JOduMonT just a double check to get a better idea of the setting for the reproducible support problem:

                      1. do you use a browser plugin?
                      2. do you have an organization?
                      3. do you store the password only in the organization?
                      4. is the organization and the number of passwords displayed in vaultwarden.example.org/admin? (no idea how to get access to /admin => https://docs.cloudron.io/apps/vaultwarden/)
                      JOduMonTJ Offline
                      JOduMonTJ Offline
                      JOduMonT
                      wrote on last edited by JOduMonT
                      #25

                      @luckow said in no password when update to 1.11.0:

                      do you use a browser plugin?

                      password disappears after updating via the browser (webapp) and the app in the browser (plugin) and in my androids don't sync anymore

                      do you have an organization?

                      NO

                      do you store the password only in the organization?

                      NO

                      is the organization and the number of passwords displayed in vaultwarden.example.org/admin? (no idea how to get access to /admin => https://docs.cloudron.io/apps/vaultwarden/)

                      NO

                      my Cloudron is update to date on an Ubuntu 20.04LTS; no change or weird configuration as been done.

                      1 Reply Last reply
                      0
                      • jdaviescoatesJ jdaviescoates

                        I'm still not at all clear what the actual issue(s) people are facing is, but so far I've not noticed anything wrong with my Vaultwarden (on the latest Cloudron versions, which it sounds like everyone having issues also is).

                        It'd be useful if people could perhaps post screenshots of what they are (not) seeing 🙂

                        JOduMonTJ Offline
                        JOduMonTJ Offline
                        JOduMonT
                        wrote on last edited by
                        #26

                        @jdaviescoates said in no password when update to 1.11.0:

                        I'm still not at all clear what the actual issue(s) people are facing is, but so far I've not noticed anything wrong with my Vaultwarden (on the latest Cloudron versions, which it sounds like everyone having issues also is).

                        with 1.26.0 I have password
                        while with 1.27.0 I don't have password

                        PASSWORD + SYNC OK

                        App Title and VersionVaultwarden 1.26.0
                        App ID4584d250-1515-4380-be5b-87a4ab3cd92d
                        Package Repositorycore
                        Package Versioncom.github.bitwardenrs@1.10.2
                        Last Updated4 days ago

                        sorry for your eyes; my internet is too bad right now for uploading screenshot

                        NO PASSWORD + SYNC FAIL

                        App Title and VersionVaultwarden 1.27.0
                        App ID4584d250-1515-4380-be5b-87a4ab3cd92d
                        Package Repositorycore
                        Package Versioncom.github.bitwardenrs@1.11.0
                        Last Updated2 minutes ago

                        1 Reply Last reply
                        0
                        • jdaviescoatesJ jdaviescoates

                          I'm still not at all clear what the actual issue(s) people are facing is, but so far I've not noticed anything wrong with my Vaultwarden (on the latest Cloudron versions, which it sounds like everyone having issues also is).

                          It'd be useful if people could perhaps post screenshots of what they are (not) seeing 🙂

                          JOduMonTJ Offline
                          JOduMonTJ Offline
                          JOduMonT
                          wrote on last edited by
                          #27

                          @jdaviescoates said in no password when update to 1.11.0:

                          screenshots

                          Old school screenshots 😄
                          Before update: https://ibb.co/0BNyck3
                          Update: https://ibb.co/3dD9P5c
                          After update: https://ibb.co/9bCS731
                          Restore backup = everything is back

                          1 Reply Last reply
                          0
                          • JOduMonTJ Offline
                            JOduMonTJ Offline
                            JOduMonT
                            wrote on last edited by
                            #28

                            Even with the new update, the issue remain

                            Ubuntu: 22.04 LTS @Hetzner
                            Cloudron: v7.3.4 (Ubuntu 22.04.1 LTS)

                            I have password

                            with the bitwarden icon
                            App: Vaultwarden 1.26.0
                            Package: com.github.bitwardenrs@1.10.2
                            Screenshot 2023-01-10 at 14.01.01.png

                            I don't have password and sync fail

                            with the vaultwarden icon
                            Application: Vaultwarden 1.27.0
                            Package: com.github.bitwardenrs@1.11.0
                            Screenshot 2023-01-10 at 14.00.31.png

                            L luckowL 2 Replies Last reply
                            1
                            • JOduMonTJ Offline
                              JOduMonTJ Offline
                              JOduMonT
                              wrote on last edited by
                              #29

                              also if I install a new instance and try to restore my backup it is not working

                              1 Reply Last reply
                              0
                              • JOduMonTJ JOduMonT

                                Even with the new update, the issue remain

                                Ubuntu: 22.04 LTS @Hetzner
                                Cloudron: v7.3.4 (Ubuntu 22.04.1 LTS)

                                I have password

                                with the bitwarden icon
                                App: Vaultwarden 1.26.0
                                Package: com.github.bitwardenrs@1.10.2
                                Screenshot 2023-01-10 at 14.01.01.png

                                I don't have password and sync fail

                                with the vaultwarden icon
                                Application: Vaultwarden 1.27.0
                                Package: com.github.bitwardenrs@1.11.0
                                Screenshot 2023-01-10 at 14.00.31.png

                                L Offline
                                L Offline
                                LoudLemur
                                wrote on last edited by
                                #30

                                @JOduMonT You might consider trying one of the following tools for screenshotting and using their masking/pixelating/painting options:

                                • Flameshot
                                • ShareX (which works with XbackBone
                                JOduMonTJ 1 Reply Last reply
                                1
                                • L LoudLemur

                                  @JOduMonT You might consider trying one of the following tools for screenshotting and using their masking/pixelating/painting options:

                                  • Flameshot
                                  • ShareX (which works with XbackBone
                                  JOduMonTJ Offline
                                  JOduMonTJ Offline
                                  JOduMonT
                                  wrote on last edited by
                                  #31

                                  @LoudLemur said in no password when update to 1.11.0:

                                  @JOduMonT You might consider trying one of the following tools for screenshotting and using their masking/pixelating/painting options:

                                  Flameshot
                                  ShareX (which works with XbackBone

                                  why you don't like my style 😉
                                  I'm using the Mac of My wife via a hotspot
                                  Still have issue with my Internet at Home so I don't have access to my Desktop.

                                  L 1 Reply Last reply
                                  0
                                  • JOduMonTJ JOduMonT

                                    Even with the new update, the issue remain

                                    Ubuntu: 22.04 LTS @Hetzner
                                    Cloudron: v7.3.4 (Ubuntu 22.04.1 LTS)

                                    I have password

                                    with the bitwarden icon
                                    App: Vaultwarden 1.26.0
                                    Package: com.github.bitwardenrs@1.10.2
                                    Screenshot 2023-01-10 at 14.01.01.png

                                    I don't have password and sync fail

                                    with the vaultwarden icon
                                    Application: Vaultwarden 1.27.0
                                    Package: com.github.bitwardenrs@1.11.0
                                    Screenshot 2023-01-10 at 14.00.31.png

                                    luckowL Offline
                                    luckowL Offline
                                    luckow
                                    translator
                                    wrote on last edited by
                                    #32

                                    @JOduMonT there is no new update for the Vaultwarden app. To fix "your" problem, you need to follow the steps described here by potemkin_ai -> https://forum.cloudron.io/topic/8327/no-password-when-update-to-1-11-0/17?_=1673358163784

                                    Pronouns: he/him | Primary language: German

                                    1 Reply Last reply
                                    1
                                    • luckowL luckow referenced this topic on
                                    • JOduMonTJ JOduMonT marked this topic as a question on
                                    • JOduMonTJ JOduMonT has marked this topic as solved on
                                    • JOduMonTJ JOduMonT

                                      @LoudLemur said in no password when update to 1.11.0:

                                      @JOduMonT You might consider trying one of the following tools for screenshotting and using their masking/pixelating/painting options:

                                      Flameshot
                                      ShareX (which works with XbackBone

                                      why you don't like my style 😉
                                      I'm using the Mac of My wife via a hotspot
                                      Still have issue with my Internet at Home so I don't have access to my Desktop.

                                      L Offline
                                      L Offline
                                      LoudLemur
                                      wrote on last edited by
                                      #33

                                      @JOduMonT said in no password when update to 1.11.0:

                                      @LoudLemur said in no password when update to 1.11.0:

                                      @JOduMonT You might consider trying one of the following tools for screenshotting and using their masking/pixelating/painting options:

                                      Flameshot
                                      ShareX (which works with XbackBone

                                      why you don't like my style 😉
                                      I'm using the Mac of My wife via a hotspot
                                      Still have issue with my Internet at Home so I don't have access to my Desktop.

                                      HAha! JOduMonT - you have GREAT style! 🙂

                                      1 Reply Last reply
                                      0
                                      • girishG Offline
                                        girishG Offline
                                        girish
                                        Staff
                                        wrote on last edited by
                                        #34

                                        I think I found the issue here. When cloudron creates a mysql database the default collation order is utf8mb4_0900_ai_ci . This is to match the MySQL 8 default - https://dev.mysql.com/doc/mysqld-version-reference/en/optvar-changes-8-0.html . When restoring, it creates the database with collation order utf8mb4_0900_ci . This was an oversight and I have fixed this for the next release.

                                        potemkin_aiP 1 Reply Last reply
                                        6
                                        • girishG girish

                                          I think I found the issue here. When cloudron creates a mysql database the default collation order is utf8mb4_0900_ai_ci . This is to match the MySQL 8 default - https://dev.mysql.com/doc/mysqld-version-reference/en/optvar-changes-8-0.html . When restoring, it creates the database with collation order utf8mb4_0900_ci . This was an oversight and I have fixed this for the next release.

                                          potemkin_aiP Offline
                                          potemkin_aiP Offline
                                          potemkin_ai
                                          wrote on last edited by
                                          #35

                                          @girish thanks for finding and sharing a root cause!

                                          My instance went through the restore indeed.

                                          1 Reply Last reply
                                          2
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Bookmarks
                                          • Search