Skip to content

Commit b795d22

Browse files
author
keijack
committed
Fix bug #89 in github
1 parent 8b78a36 commit b795d22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py_eureka_client/eureka_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def add_application(self, application: Application) -> None:
244244
def get_application(self, app_name: str = "") -> Application:
245245
with self.__app_lock:
246246
aname = app_name.upper()
247-
if app_name in self.__application_name_dic:
247+
if aname in self.__application_name_dic:
248248
return self.__application_name_dic[aname]
249249
else:
250250
return Application(name=aname)

0 commit comments

Comments
 (0)