Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sp 1132: Replace FileSet adapters with FileStream adapters in all e2e tests #1153

Merged
merged 6 commits into from
Jan 24, 2023
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
[hotfix] Extract string into a variable
  • Loading branch information
tenthe committed Jan 24, 2023
commit 09e70845e4e9a3330761703659069774b70f1bf9
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ public class FileStreamProtocol extends Protocol {
private static final String SPEED_UP_FACTOR = "speedUpFactor";
private static final String FASTEST = "fastest";

private static final String SPEED_UP_FACTOR_GROUP = "speed-up-factor-group";


private static final Logger logger = LoggerFactory.getLogger(FileStreamProtocol.class);

Expand Down Expand Up @@ -300,7 +302,7 @@ public ProtocolDescription declareModel() {
Alternatives.from(Labels.withId(KEEP_ORIGINAL_TIME), true),
Alternatives.from(Labels.withId(FASTEST)),
Alternatives.from(Labels.withId(SPEED_UP_FACTOR),
StaticProperties.group(Labels.withId("speed-up-factor-group"),
StaticProperties.group(Labels.withId(SPEED_UP_FACTOR_GROUP),
StaticProperties.doubleFreeTextProperty(Labels.withId(SPEED_UP)))))
.build();
}
Expand Down