We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
OaiHarvestClientIntegrationTest in ds-datahandler uses the code
OaiHarvestClientIntegrationTest
oaiTarget.setUsername(conf.getString("integration.oaiTargets[1].user"));
against a config like
integration: oaiTargets: - name: pvica5.devel datasource: ds.radiotv url: <serverurl> user: <user> password: <password> metadataPrefix: XIP_full_schema description: Radio- of TV-udsendelser - name: pvica7.devel datasource: ds.radiotv url: <serverurl> user: <user> password: <password> metadataPrefix: xip description: Radio- of TV-udsendelser filter: preservica dateStampFormat: datetime dayOnly: true startDay: '2024-03-01'
It would be a lot cleaner to write
oaiTarget.setUsername(conf.getString("integration.oaiTargets[name=pvica7.devel].user"));
but this does not work!?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
OaiHarvestClientIntegrationTest
in ds-datahandler uses the codeagainst a config like
It would be a lot cleaner to write
but this does not work!?
The text was updated successfully, but these errors were encountered: