File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
integration_test/internal/config Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 43
43
contents : write
44
44
env :
45
45
SERVER_DIR : open-im-server
46
- CONFIG_PATH : config/notification.yml
46
+ NOTIFICATION_CONFIG_PATH : config/notification.yml
47
+ SHARE_CONFIG_PATH : config/share.yml
47
48
# pull-requests: write
48
49
strategy :
49
50
matrix :
79
80
- name : Modify Server Configuration
80
81
run : |
81
82
cd ${{ env.SERVER_DIR }}
82
- yq e '.groupCreated.isSendMsg = true' -i ${{ env.CONFIG_PATH }}
83
- yq e '.friendApplicationApproved.isSendMsg = true' -i ${{ env.CONFIG_PATH }}
83
+ yq e '.groupCreated.isSendMsg = true' -i ${{ env.NOTIFICATION_CONFIG_PATH }}
84
+ yq e '.friendApplicationApproved.isSendMsg = true' -i ${{ env.NOTIFICATION_CONFIG_PATH }}
85
+ yq e '.secret = 123456' -i ${{ env.SHARE_CONFIG_PATH }}
84
86
85
87
- name : Start Server Services
86
88
run : |
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const (
10
10
APIAddr = "http://" + TestIP + ":10002"
11
11
WsAddr = "ws://" + TestIP + ":10001"
12
12
AdminUserID = "imAdmin"
13
- Secret = "openIM123 "
13
+ Secret = "123456 "
14
14
PlatformID = constant .AndroidPlatformID
15
15
LogLevel = 3
16
16
DataDir = "./data/"
You can’t perform that action at this time.
0 commit comments