Skip to content

Commit b64a380

Browse files
committed
chore: 调整actions run_tests触发的范围
1 parent d4991f1 commit b64a380

2 files changed

Lines changed: 3 additions & 11 deletions

File tree

.github/workflows/run_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: run integration tests
33
on:
44
workflow_dispatch:
55
push:
6-
branches: [ "master" ]
6+
branches: [ "master", "develop" ]
77
pull_request:
8-
branches: [ "master" ]
8+
branches: [ "master", "develop" ]
99

1010
jobs:
1111
deploy:

src/raft/filestore/raftapply.rs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,10 @@ use super::{
1111
},
1212
StoreUtils,
1313
};
14-
use crate::common::byte_utils::bin_to_id;
15-
use crate::common::constant::{
16-
CACHE_TREE_NAME, CONFIG_TREE_NAME, NAMESPACE_TREE_NAME, SEQUENCE_TREE_NAME, SEQ_KEY_CONFIG,
17-
USER_TREE_NAME,
18-
};
19-
use crate::config::core::{ConfigCmd, ConfigKey, ConfigValue};
20-
use crate::config::model::{ConfigRaftCmd, ConfigValueDO};
21-
use crate::raft::db::table::{TableManagerInnerReq, TableManagerReq};
2214
use crate::raft::filestore::model::SnapshotRecordDto;
2315
use crate::raft::filestore::raftdata::RaftDataHandler;
2416
use crate::raft::filestore::raftsnapshot::SnapshotWriterActor;
25-
use crate::raft::store::{ClientRequest, ClientResponse};
17+
use crate::raft::store::ClientResponse;
2618
use actix::prelude::*;
2719
use async_raft::raft::EntryPayload;
2820
use async_raft_ext as async_raft;

0 commit comments

Comments
 (0)