2017-10-30 5 views
0

명령 줄에서 새 OpenWhisk 작업을 만들면 다음 오류가 반환됩니다.이름 충돌로 인해 작업을 만들 수 없지만 기존 작업에는이 이름이 있습니까?

$ wsk action create hello index.js 
error: Unable to create action 'hello': Resource by this name exists but is not in this collection. (code 4923976) 
Run 'wsk --help' for usage. 

이미 배포 된 작업을 보면 같은 이름의 다른 작업이 표시되지 않습니다.

$ wsk action list 
actions 
/[email protected]_dev/example         private nodejs:6 
/[email protected]_dev/hello_world        private nodejs:6 
/[email protected]_dev/testing         private nodejs:6 

이 오류 메시지에 대한 책임은 무엇입니까?

답변

1

조치, 트리거 및 규칙 이름은 네임 스페이스 및 패키지 내에서 고유해야합니다.

이 식별자가있는 작업이 없으면 hello 이름으로 트리거 및 규칙을 확인하십시오.

다음은 동일한 이름을 사용할 때 동작, 트리거 및 규칙이 충돌하는 것을 보여주는 예입니다.

$ wsk trigger create clash 
ok: created trigger clash 
[17:41:41 /private/tmp]$ wsk action create clash index.js 
error: Unable to create action 'clash': Resource by this name exists but is not in this collection. (code 5000008) 
Run 'wsk --help' for usage. 
[17:41:54 /private/tmp]$ wsk trigger delete clash 
ok: deleted trigger clash 
[17:42:06 /private/tmp]$ wsk action create clash index.js 
ok: created action clash 

이 오류는 동작 이름에 다른 식별자를 사용하거나 충돌하는 리소스의 이름을 변경하면 해결할 수 있습니다. 작업을 패키지 내에서 이동할 수도 있으므로 글로벌 작업 공간의 리소스와의 충돌을 막을 수 있습니다.