Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
polish
  • Loading branch information
Bilal Al committed Dec 19, 2024
commit db626e4c9194e8c441aa548dded0a67051c0527b
4 changes: 2 additions & 2 deletions splitio/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def get_treatment(self, key, feature_flag_name, attributes=None):
treatment, _ = self._get_treatment(MethodExceptionsAndLatencies.TREATMENT, key, feature_flag_name, attributes)
return treatment

except Exception as e:
except:
_LOGGER.error('get_treatment failed')
return CONTROL

Expand Down Expand Up @@ -698,7 +698,7 @@ async def get_treatment(self, key, feature_flag_name, attributes=None):
treatment, _ = await self._get_treatment(MethodExceptionsAndLatencies.TREATMENT, key, feature_flag_name, attributes)
return treatment

except Exception as e:
except:
_LOGGER.error('get_treatment failed')
return CONTROL

Expand Down