-
-
Notifications
You must be signed in to change notification settings - Fork 81
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
unable to use the remote_id for update content_type #220
Comments
You are right. In fact, looking in the code, I see that this feature was enabled in the past, then commented out - but forgotten in the docs as 'available'. The reason is found in a comment in the code: In other words: there are places where a match for a ContentType is done using a single value which can be either an integer (id) or a string (ct identifier). This is slightly different from, say, matching Contents or Locations, where matching on a single value will either look for id (for integers) or for remote_id (for strings). Since there now seems to be at least a user who is asking for matching on remote_id, I am open to revisit this decision. A possible compromise would be to keep matching on identifier if a single string value is passed, and match on remote_id only when the user expressly asks for it - and make sure that this is well documented in the docs... |
Another answer is update the documentation because the |
As you wish... do you need yo use the |
@gggeek In my case, the But, I like use the |
In the DSL doc, I can use the content class
remote_id
in the match section into my migration.But, if I want execute the migration, I have this error:
The text was updated successfully, but these errors were encountered: