Skip to content

Commit

Permalink
Fix MongoDB StorageEngine
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor authored Nov 17, 2023
1 parent 8b5fbb3 commit 65358b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/go/mongolib/proto/server_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ type ServerStatus struct {
}

type StorageEngine struct {
Name string `bson:"name"`
SupportCommittedREads bool `bson:supportsCommittedReads"`
ReadOnly bool `bson:"readOnly"`
Persistent bool `bson:"persistent"`
Name string `bson:"name"`
SupportsCommittedReads bool `bson:"supportsCommittedReads"`
ReadOnly bool `bson:"readOnly"`
Persistent bool `bson:"persistent"`
}

// WiredTiger stores information related to the WiredTiger storage engine.
Expand Down

0 comments on commit 65358b7

Please sign in to comment.