1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

Merge branch 'master' into 5-0

This commit is contained in:
Mike Perham 2017-03-13 10:49:18 -07:00
commit c77fdda7d6
5 changed files with 96 additions and 4 deletions

View file

@ -3,9 +3,10 @@ Sidekiq Enterprise Changelog
Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how to buy.
HEAD
1.5.2
-------------
- Fix encrypted arguments double-encrypted by retry or rate limiting [#3368]
- Fix leak in concurrent rate limiter, run this in Rails console to clean up existing data [#3323]
```ruby
expiry = 1.month.to_i; Sidekiq::Limiter.redis { |c| c.scan_each(match: "lmtr-cfree-*") { |key| c.expire(key, expiry) } }

View file

@ -3,6 +3,18 @@ Sidekiq Pro Changelog
Please see [http://sidekiq.org/](http://sidekiq.org/) for more details and how to buy.
3.4.5
---------
- Fix potential job loss with reliable scheduler when lots of jobs are scheduled
at precisely the same time. Thanks to raivil for his hard work in
reproducing the bug. [#3371]
3.4.4
---------
- Optimize super\_fetch shutdown to restart jobs quicker [#3249]
3.4.3
---------

View file

@ -20,7 +20,7 @@ factory.defined&&factory.defined(function(d){return d.y!==null});return factory}
var poller;
var realtimeGraph = function(updatePath) {
var timeInterval = parseInt(localStorage.timeInterval || '2000');
var timeInterval = parseInt(localStorage.timeInterval || '5000');
var graphElement = document.getElementById("realtime");

79
web/locales/fa.yml Normal file
View file

@ -0,0 +1,79 @@
# elements like %{queue} are variables and should not be translated
fa: # <---- change this to your locale code
Dashboard: داشبورد
Status: اعلان
Time: رمان
Namespace: فضای نام
Realtime: زنده
History: تاریخچه
Busy: مشغول
Processed: پردازش شده
Failed: ناموفق
Scheduled: زمان بندی
Retries: تکرار
Enqueued: صف بندی نشدند
Worker: کارگزار
LivePoll: Live Poll
StopPolling: Stop Polling
Queue: صف
Class: کلاس
Job: کار
Arguments: آرگومنت
Extras: اضافی
Started: شروع شده
ShowAll: نمایش همه
CurrentMessagesInQueue: کار فعلی در <span class='title'>%{queue}</span>
Delete: حذف
AddToQueue: افزودن به صف
AreYouSureDeleteJob: آیا شما مطمعن هستید از حذف این کار ؟
AreYouSureDeleteQueue: ایا شما مطمعنید از حذف %{queue} ?
Queues: صف ها
Size: سایز
Actions: اعمال
NextRetry: بار دیگر تلاش کنید
RetryCount: تعداد تلاش ها
RetryNow: تلاش مجدد
Kill: کشتن
LastRetry: آخرین تلاش
OriginallyFailed: Originally Failed
AreYouSure: آیا مطمعن هستید?
DeleteAll: حذف همه
RetryAll: تلاش مجدد برای همه
NoRetriesFound: هیچ تلاش پیدا نشد
Error: خطا
ErrorClass: خطا کلاس
ErrorMessage: پیغام خطا
ErrorBacktrace: خطای معکوس
GoBack: ← برگشت
NoScheduledFound: هیچ کار برنامه ریزی شده ای یافت نشد
When: وقتی که
ScheduledJobs: کار برنامه ریزی شده
idle: بیهودی
active: فعال
Version: ورژن
Connections: ارتباطات
MemoryUsage: حافظه استفاده شده
PeakMemoryUsage: اوج حافظه استفاده شده
Uptime: آپ تایم (روز)
OneWeek: ۱ هفته
OneMonth: ۱ ماه
ThreeMonths: ۳ ماه
SixMonths: ۶ ماه
Failures: شکست ها
DeadJobs: کار مرده
NoDeadJobsFound: کار مرده ای یافت نشد
Dead: مرده
Processes: پردازش ها
Thread: رشته
Threads: رشته ها
Jobs: کار ها
Paused: مکث
Stop: توقف
Quiet: خروج
StopAll: توقف همه
QuietAll: خروج همه
PollingInterval: Polling interval
Plugins: پلاگین ها
NotYetEnqueued: بدون صف بندی
CreatedAt: ساخته شده در
BackToApp: برگشت به برنامه

View file

@ -9,9 +9,9 @@
</h3>
<div class="interval-slider">
<span class="interval-slider-label"><%= t('PollingInterval') %>:</span>
<span class="current-interval">2 sec</span>
<span class="current-interval">5 sec</span>
<br/>
<input type="range" min="2000" max="20000" step="1000" value="2000"/>
<input type="range" min="2000" max="20000" step="1000" value="5000"/>
</div>
</div>