-
Notifications
You must be signed in to change notification settings - Fork 99
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
BUG: value too long for type character varying(100) #1537
Comments
Hi @tdruez, I want to work on this issue can you tell me how you would like this problem to be solved, do you want to extend the overall length or do you want to ensure that the extension value does not exceed 100 characters or we can also make it so that it only stores the last part since extension is meant to store file extensions or we can do both . |
This problem also occurs with simpler SCIO pipelines like load_inventory - a recent example for this error message is:
"company" is a placeholder for a private repo |
Hi @tdruez, following up on my earlier question about how you'd like this handled (extending the length, capping at 100 characters, storing only the last part, or a combination). Also, is bumping the length to 500 characters alright? |
While running a d2d pipeline on the following inputs:
Pipeline failure:
This is caused by the following file:
to/META-INF/micronaut/io.micronaut.inject.BeanDefinitionReference/io.micronaut.http.client.$ServiceHttpClientConfiguration$ServiceSslClientConfiguration$DefaultTrustStoreConfiguration$Definition$Reference
The
extension
field value is provided as.$ServiceHttpClientConfiguration$ServiceSslClientConfiguration$DefaultTrustStoreConfiguration$Definition$Reference
in the batch_create and fails since theextension
field max length is 100.The text was updated successfully, but these errors were encountered: