From 3b64aed60928dc5d3d9a4c3aff5429d61c2d8585 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Bj=C3=B6rn=20Vonheiden?= <bjoern.vonheiden@hotmail.de>
Date: Mon, 20 Jul 2020 09:49:34 +0200
Subject: [PATCH] Enhance readability using correct types in run uc

---
 execution/run_uc.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/execution/run_uc.py b/execution/run_uc.py
index 6f83c0e73..7e4de01b6 100644
--- a/execution/run_uc.py
+++ b/execution/run_uc.py
@@ -180,8 +180,8 @@ def start_application():
         app_container['image'] = 'soerenhenning/uc' + args.uc_id + '-app:latest'
         # TODO: acces over name of attribute
         app_container['env'][1]['value'] = str(args.commit_interval_ms)
-        app_container['resources']['limits']['memory'] = str(args.memory_limit)
-        app_container['resources']['limits']['cpu'] = str(args.cpu_limit) # cpu limit is already str
+        app_container['resources']['limits']['memory'] = args.memory_limit
+        app_container['resources']['limits']['cpu'] = args.cpu_limit
         try:
             resp = appsApi.create_namespaced_deployment(
                 namespace="default",
-- 
GitLab