-
Notifications
You must be signed in to change notification settings - Fork 53
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
Add option to export patterns #567
Changes from 9 commits
023f194
c7a8886
d4e7804
58c0f4d
1a92792
3ac3e7d
87e54a4
7f64621
4b641c0
1c03a75
b2a3116
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,7 +130,8 @@ public void jobLogic() { | |
snapshot.feedTransformResult = dbTarget.feedTransformResult; | ||
// If the user has selected to create a new version from the resulting snapshot, do so here. | ||
if (rules.createNewVersion) { | ||
addNextJob(new CreateFeedVersionFromSnapshotJob(feedSource, snapshot, owner)); | ||
// Publishing the proprietary files will preserve the pattern names in the newly created feed version. | ||
addNextJob(new CreateFeedVersionFromSnapshotJob(feedSource, snapshot, owner, true)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This feels like a scary new default. How are we sure this won't have weird side effects? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a safe default bc the method is only used to process incoming GTFS files. All the export methods allow for user selection if they want to export the pattern names and this just allows re-import |
||
} | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space