Skip to content

Commit 85ad67c

Browse files
authored
Merge pull request Azure#13101 from Azure/alert-autofix-183
Alert autofix : Code scanning alerts Azure#183 (Potentially uninitialized local variable) for ImpervaCloudWAF Data Connectors
2 parents c8e0034 + 9b484a1 commit 85ad67c

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
Binary file not shown.

Solutions/ImpervaCloudWAF/Data Connectors/ImpervaWAFCloudSentinelConnector/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def last_file_point(self):
9494
logging.info("There are {} files in the list index file.".format(len(files_arr)))
9595
if self.files_array is not None:
9696
current_file = self.files_array[-1]
97-
state.post(current_file)
97+
state.post(current_file)
9898
return files_arr
9999
except Exception as err:
100100
logging.error("Last point file detection error. Exception error text: {}".format(err))

0 commit comments

Comments
 (0)