Skip to content

Commit 740ec94

Browse files
committed
Merge branch 'master' into feature/storage-engine-changes
2 parents 4bae862 + b00fc04 commit 740ec94

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/Manual/Upgrading/Starter/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The upgrade procedure of the _Starter_ described in this _Section_ can be used t
88
upgrade to a new hotfix, or to perform an upgrade to a new minor version of ArangoDB.
99

1010
**Important:** rolling upgrades of Cluster setups from 3.2 to 3.3 are only supported
11-
from versions 3.2.15 and 3.3.9.
11+
from versions 3.2.16 and 3.3.12.
1212

1313
## Upgrade Procedure
1414

@@ -25,17 +25,17 @@ The first step is to install the new ArangoDB package.
2525

2626
**Note:** you do not have to stop the _Starter_ processes before upgrading it.
2727

28-
For example, if you want to upgrade to `3.3.8-1` on Debian or Ubuntu, either call
28+
For example, if you want to upgrade to `3.3.12-1` on Debian or Ubuntu, either call
2929

3030
```bash
31-
apt install arangodb=3.3.8
31+
apt install arangodb=3.3.12
3232
```
3333

3434
(`apt-get` on older versions) if you have added the ArangoDB repository. Or
3535
install a specific package using
3636

3737
```bash
38-
dpkg -i arangodb3-3.3.8-1_amd64.deb
38+
dpkg -i arangodb3-3.3.12-1_amd64.deb
3939
```
4040

4141
after you have downloaded the corresponding file from https://download.arangodb.com/.

service/upgrade_manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ func (m *upgradeManager) StartDatabaseUpgrade(ctx context.Context) error {
369369
}
370370
// Add all syncworkers
371371
for _, p := range config.AllPeers {
372-
if p.HasSyncMaster() {
372+
if p.HasSyncWorker() {
373373
plan.Entries = append(plan.Entries, UpgradePlanEntry{
374374
Type: UpgradeEntryTypeSyncWorker,
375375
PeerID: p.ID,

0 commit comments

Comments
 (0)