Skip to content

Commit

Permalink
chore: check client
Browse files Browse the repository at this point in the history
  • Loading branch information
appflowy committed Dec 8, 2024
1 parent 2a93680 commit 77038a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deploy.env
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ REDIS_PORT=6379

# Minio Host
MINIO_HOST=minio
MINIO_PORT=9000

# Gotrue Host
GOTRUE_HOST=gotrue
Expand Down Expand Up @@ -110,7 +111,7 @@ APPFLOWY_S3_CREATE_BUCKET=true
# By default, Minio is used as the default file storage which uses host's file system.
# Keep this as true if you are using other S3 compatible storage provider other than AWS.
APPFLOWY_S3_USE_MINIO=true
APPFLOWY_S3_MINIO_URL=http://${MINIO_HOST}:9000 # change this if you are using a different address for minio
APPFLOWY_S3_MINIO_URL=http://${MINIO_HOST}:${MINIO_PORT} # change this if you are using a different address for minio
APPFLOWY_S3_ACCESS_KEY=minioadmin
APPFLOWY_S3_SECRET_KEY=minioadmin
APPFLOWY_S3_BUCKET=appflowy
Expand Down
5 changes: 5 additions & 0 deletions tests/collab/stress_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,8 @@ async fn stress_test_run_multiple_text_edits() {
.unwrap();
}
}

#[tokio::test(flavor = "multi_thread", worker_threads = 4)]
async fn stress_test_panic() {
panic!()
}

0 comments on commit 77038a6

Please sign in to comment.