-
Notifications
You must be signed in to change notification settings - Fork 117
Closed
Description
In API.cfc line 414 was throwing errors for me (CF Builder 2 was having issues with renaming files, got two files instead, causing the error to fire). Here's the line:
<cfthrow
message="Duplicate URI scheme detected. All URIs must be unique (excluding tokens)."
detail="The URI for `#beanName#` conflicts with the existing URI definition of `#application._taffy.endpoints[metaInfo.uriRegex].beanName#`"
errorcode="taffy.resources.DuplicateUriPattern"
/>
Fixed with:
<cfthrow
message="Duplicate URI scheme detected. All URIs must be unique (excluding tokens)."
detail="The URI for `#local.beanName#` conflicts with the existing URI definition of `#application._taffy.endpoints[local.metaInfo.uriRegex].beanName#`"
errorcode="taffy.resources.DuplicateUriPattern"
/>
Metadata
Metadata
Assignees
Labels
Projects
Relationships
Development
Select code repository
Activity
Resolves #34 - exception in error handling code for duplicate URI pat…
atuttle commentedon May 11, 2011
Thanks for the bug report!
Fixed in 1.1: c805191
Resolves atuttle#34 - exception in error handling code for duplicate …