Skip to content

Commit

Permalink
fix: User "Folder/" prefix for bench mailboxes
Browse files Browse the repository at this point in the history
Ensure they work with the proton connector.
  • Loading branch information
LBeernaertProton committed Oct 12, 2022
1 parent 6f6ba37 commit abec84b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/gluon_bench/imap_benchmarks/state_tracker.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func newStateTracker() *stateTracker {
}

func (s *stateTracker) createRandomMBox(cl *client.Client) (string, error) {
mbox := uuid.NewString()
mbox := "Folders/" + uuid.NewString()

if err := cl.Create(mbox); err != nil {
return "", err
Expand Down

0 comments on commit abec84b

Please sign in to comment.