We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ef07fd commit 3015c12Copy full SHA for 3015c12
python/extractor/semmle/worker.py
@@ -162,6 +162,10 @@ def close(self):
162
self.module_queue.put(None)
163
for p in self.procs:
164
p.join()
165
+ if 'CODEQL_EXTRACTOR_PYTHON_OVERLAY_BASE_METADATA_OUT' in os.environ:
166
+ with open(os.environ['CODEQL_EXTRACTOR_PYTHON_OVERLAY_BASE_METADATA_OUT'], 'w', encoding='utf-8') as f:
167
+ metadata = {}
168
+ json.dump(metadata, f)
169
self.logger.info("Processed %d modules in %0.2fs", len(self.import_graph.done), time.time() - self.start_time)
170
171
def stop(self, timeout=2.0):
0 commit comments