APIcast icon indicating copy to clipboard operation
APIcast copied to clipboard

spec: fix flaky timer based tests

Open tkan145 opened this issue 1 year ago • 0 comments

Test commit

Set docker resource to replicate circleci

diff --git a/docker-compose-devel.yml b/docker-compose-devel.yml
index f1f9e927..ce20c55e 100644
--- a/docker-compose-devel.yml
+++ b/docker-compose-devel.yml
@@ -21,5 +21,13 @@ services:
       # https://github.com/jenkinsci/docker/issues/519#issuecomment-313052325
       GIT_COMMITTER_NAME: ${GIT_COMMITTER_NAME:-${USER}}
       GIT_COMMITTER_EMAIL: ${GIT_COMMITTER_EMAIL:-""}
+    deploy:
+      resources:
+        limits:
+          cpus: '0.03'
+          memory: 50M
+        reservations:
+          cpus: '0.02'
+          memory: 20M
   redis:
     image: redis

tkan145 avatar Feb 28 '24 07:02 tkan145