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 a97af1d commit e3a82d4Copy full SHA for e3a82d4
lib/execution-options.js
@@ -498,7 +498,10 @@ class DefaultExecutionOptions extends ExecutionOptions {
498
const generator = this._client.options.policies.timestampGeneration;
499
500
if ( types.protocolVersion.supportsTimestamp(this._client.controlConnection.protocolVersion) && generator) {
501
- result = generator.next(this._client);
+ if (this._generatedTimestamp === undefined) {
502
+ this._generatedTimestamp = generator.next(this._client);
503
+ }
504
+ result = this._generatedTimestamp;
505
} else {
506
result = null;
507
}
0 commit comments