Revert "fix: disable metadata for now"

This commit is contained in:
Christopher Willis-Ford 2023-10-03 12:41:03 -07:00 committed by GitHub
parent b159edb317
commit bd51da51eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 7 deletions
src/engine

View file

@ -1,6 +1,6 @@
const EventEmitter = require('events');
const {OrderedMap} = require('immutable');
// const uuid = require('uuid');
const uuid = require('uuid');
const ArgumentType = require('../extension-support/argument-type');
const Blocks = require('./blocks');
@ -2032,9 +2032,8 @@ class Runtime extends EventEmitter {
return;
}
// TODO: re-enable metadata
// const newRunId = uuid.v1();
// this.storage.scratchFetch.setMetadata(this.storage.scratchFetch.RequestMetadata.RunId, newRunId);
const newRunId = uuid.v1();
this.storage.scratchFetch.setMetadata(this.storage.scratchFetch.RequestMetadata.RunId, newRunId);
}
/**