File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
.qoder/repowiki/zh/content/部署与运维指南
deploy/docker/scripts/data
src/main/java/com/alibaba/apiopenplatform/service/gateway/factory Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ Server --> MySQL
6969- ** 依赖** : ` mysql ` (启动前需数据库就绪)
7070
7171#### himarket-admin 与 himarket-frontend
72- - ** 镜像** : 分别为 ` himarket-admin:1.0.0 ` 和 ` himarket-frontend:1.0.0 `
72+ - ** 镜像** : 分别为 ` himarket-admin:latest ` 和 ` himarket-frontend:latest `
7373- ** 环境变量** :
7474 - ` HIMARKET_SERVER ` : 指向后端服务地址(` http://himarket-server:8080 ` )
7575- ** 端口映射** :
@@ -143,7 +143,7 @@ hub: opensource-registry.cn-hangzhou.cr.aliyuncs.com/higress-group
143143frontend:
144144 image:
145145 repository: himarket-frontend
146- tag: "1.0.0 "
146+ tag: "latest "
147147 pullPolicy: Always
148148` ` `
149149- 所有镜像基于 `hub` 前缀构建完整路径。
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ HIMARKET_FRONTEND_IMAGE=opensource-registry.cn-hangzhou.cr.aliyuncs.com/higress-
1414REDIS_IMAGE = higress-registry.cn-hangzhou.cr.aliyuncs.com/higress/redis-stack-server:7.4.0-v3
1515
1616# MySQL Configuration
17- MYSQL_IMAGE = opensource-registry.cn-hangzhou.cr.aliyuncs.com/higress-group/mysql:1.0.0
17+ MYSQL_IMAGE = opensource-registry.cn-hangzhou.cr.aliyuncs.com/higress-group/mysql:latest
1818MYSQL_ROOT_PASSWORD = 123456
1919MYSQL_DATABASE = portal_db
2020MYSQL_USER = portal_user
Original file line number Diff line number Diff line change 200200 <dependency >
201201 <groupId >com.aliyun.openservices</groupId >
202202 <artifactId >aliyun-log</artifactId >
203- <version >0.7.82 </version >
203+ <version >0.6.142 </version >
204204 </dependency >
205205
206206 <dependency >
Original file line number Diff line number Diff line change 99
1010import com .aliyun .openservices .log .Client ;
1111import com .aliyun .openservices .log .common .auth .Credentials ;
12- import com .aliyun .openservices .log .common .auth .DefaultCredentails ;
12+ import com .aliyun .openservices .log .common .auth .DefaultCredentials ;
1313import com .github .benmanes .caffeine .cache .Cache ;
1414import com .github .benmanes .caffeine .cache .Caffeine ;
1515import lombok .RequiredArgsConstructor ;
@@ -80,7 +80,7 @@ private Client createClientWithAkSk() {
8080 String endpoint = getEffectiveEndpoint ();
8181
8282 try {
83- Credentials credentials = new DefaultCredentails (accessKeyId , accessKeySecret );
83+ Credentials credentials = new DefaultCredentials (accessKeyId , accessKeySecret );
8484 log .debug ("Creating SLS client with AK/SK, endpoint: {}" , endpoint );
8585 return new Client (endpoint , credentials , null );
8686 } catch (Exception e ) {
You can’t perform that action at this time.
0 commit comments