Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion agent/app/service/website_ssl.go
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ func (w WebsiteSSLService) PushToNode(req request.WebsiteSSLPush) error {
return xpack.MultiNodeProvider.PushSSLToNode(websiteSSL)
}

pushTask, err := task.NewTaskWithOps(websiteSSL.PrimaryDomain, task.TaskPush, task.TaskScopeWebsite, req.TaskID, websiteSSL.ID)
pushTask, err := task.NewTask(task.GetTaskName(websiteSSL.PrimaryDomain, task.TaskPush, "SSL"), task.TaskPush, task.TaskScopeWebsite, req.TaskID, websiteSSL.ID)
if err != nil {
return err
}
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2057,6 +2057,8 @@ const message = {
auth: 'Login Authentication',
alert: 'Alert Notifications',
sync: 'Resource Sync',
exchange: 'Resource Sync',
xapp: 'App',
},
websiteLog: 'Website logs',
runLog: 'Run logs',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/es-es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2100,6 +2100,8 @@ const message = {
auth: 'Autenticación de inicio de sesión',
alert: 'Notificaciones de alerta',
sync: 'Sincronización de Recursos',
exchange: 'Sincronización de Recursos',
xapp: 'App',
},
websiteLog: 'Logs de sitio web',
runLog: 'Logs de ejecución',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/fa.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2046,6 +2046,8 @@ const message = {
auth: 'احراز هویت ورود',
alert: 'هشدارها',
sync: 'همگام‌سازی منابع',
exchange: 'همگام‌سازی منابع',
xapp: 'App',
},
websiteLog: 'لاگ وب‌سایت',
runLog: 'لاگ اجرا',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/ja.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2068,6 +2068,8 @@ const message = {
auth: 'ログイン認証',
alert: 'アラート通知',
sync: 'リソース同期',
exchange: 'リソース同期',
xapp: 'App',
},
websiteLog: 'ウェブサイトログ',
runLog: 'ログを実行します',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/ko.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2026,6 +2026,8 @@ const message = {
auth: '로그인 인증',
alert: '경고 알림',
sync: '리소스 동기화',
exchange: '리소스 동기화',
xapp: 'App',
},
websiteLog: '웹사이트 로그',
runLog: '실행 로그',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/ms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2094,6 +2094,8 @@ const message = {
auth: 'Pengesahan log masuk',
alert: 'Pemberitahuan amaran',
sync: 'Penyegerakan Sumber',
exchange: 'Penyegerakan Sumber',
xapp: 'App',
},
websiteLog: 'Log Laman Web',
runLog: 'Log Jalankan',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/pt-br.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2210,6 +2210,8 @@ const message = {
auth: 'Autenticação de login',
alert: 'Notificações de alerta',
sync: 'Sincronização de Recursos',
exchange: 'Sincronização de Recursos',
xapp: 'App',
},
websiteLog: 'Logs do website',
runLog: 'Logs de execução',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/ru.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2083,6 +2083,8 @@ const message = {
auth: 'Аутентификация входа',
alert: 'Уведомления о тревогах',
sync: 'Синхронизация ресурсов',
exchange: 'Синхронизация ресурсов',
xapp: 'App',
},
websiteLog: 'Логи веб-сайта',
runLog: 'Логи выполнения',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/tr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2092,6 +2092,8 @@ const message = {
auth: 'Giriş kimlik doğrulaması',
alert: 'Uyarı bildirimleri',
sync: 'Kaynak Senkronizasyonu',
exchange: 'Kaynak Senkronizasyonu',
xapp: 'App',
},
websiteLog: 'Website logları',
runLog: 'Çalıştırma logları',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/zh-Hant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1937,6 +1937,8 @@ const message = {
auth: '登入認證',
alert: '告警通知',
sync: '資源同步',
exchange: '資源同步',
xapp: 'APP',
},
websiteLog: '網站日誌',
runLog: '執行日誌',
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lang/modules/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1934,6 +1934,8 @@ const message = {
auth: '登陆认证',
alert: '告警通知',
sync: '资源同步',
exchange: '资源同步',
xapp: 'APP',
},
websiteLog: '网站日志',
runLog: '运行日志',
Expand Down
Loading