Skip to content

Commit 267a436

Browse files
committed
fix: execute method should always return S_OK()
1 parent 3a510bc commit 267a436

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/DIRAC/FrameworkSystem/Agent/ProxyRenewalAgent.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,5 @@ def execute(self):
8282
userDN = record[0]
8383
userGroup = record[1]
8484
futures.append(executor.submit(self.__renewProxyForCredentials, userDN, userGroup))
85-
return S_OK()
85+
86+
return S_OK()

0 commit comments

Comments
 (0)